工作流程规则集对话框

发布于 2024-07-07 22:29:07 字数 56 浏览 5 评论 0原文

我们能否以某种方式扩展 RuleSetDialog 类并托管在我们的 Windows 应用程序中?

Can we somehow extend the RuleSetDialog class and host in our windows application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素食主义者 2024-07-14 22:29:07

您只需一点点黑客就可以完全做到这一点:将智能感知文本框内部控制与 System.Workflow.Activities.Rules.Design 命名空间分开......然后您几乎可以用它做任何事情。 分离在这里意味着通常的情况:创建一个包装器(适配器可能是一个文本框控件),在解决一些依赖关系后也进行实例化(最坏的情况你可以隐藏原始的规则编辑器、解析器等......)。

You can do that completely via a little bit of hack only : separate the intellisense textbox internal control from the System.Workflow.Activities.Rules.Design namespace ... then you can do almost anything with that. Separation means here the usual : create a wrapper (adapter precisely perhaps a Textbox control), instantiate after resolving some dependencies too (worst case you can just hide the original rule editor, parser, etc...).

情愿 2024-07-14 22:29:07

虽然确实不完全支持扩展对话框,但您可以进行一些自定义。 在之前的项目中,我能够在运行时隐藏和重新排列一些对话框控件。

var dialog = new RuleSetDialog(activityType, null, ruleset);
dialog.Controls["headerTextLabel"].Visible = false;
dialog.Controls["pictureBoxHeader"].Visible = false;

...

var ruleGroupBox = dialog.Controls["ruleGroupBox"];
ruleGroupbox.Top -= 46;

... etc.

启动 Reflector 并四处查看。 没有什么可以阻止您隐藏和移动控件来自定义它。 您甚至可以将控件添加到组框,重新连接按钮处理程序,或者根据您的喜好完全重新排列表单。 这有点手动,但可以完成。

While it's true that extending the dialog isn't exactly supported, you can get away with some customizations. On a previous project, I was able to hide and rearrange some of the dialog controls at runtime.

var dialog = new RuleSetDialog(activityType, null, ruleset);
dialog.Controls["headerTextLabel"].Visible = false;
dialog.Controls["pictureBoxHeader"].Visible = false;

...

var ruleGroupBox = dialog.Controls["ruleGroupBox"];
ruleGroupbox.Top -= 46;

... etc.

Fire up Reflector and poke around. There's nothing that stops you from hiding and moving the controls to customize it. You could even add controls to the group boxes, rewire the button handlers, or completely rearrange the form to your liking. It's a bit manual, but it can be done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文