设置项目自定义操作阅读复选框

发布于 2024-09-26 09:24:27 字数 371 浏览 1 评论 0原文

我添加了复选框和对话框。

我需要能够从自定义操作中读取框的状态。我还需要我拥有的路径,但我找不到如何读取复选框的状态。

这怎么能做到呢?

public override void Commit(IDictionary savedState)
{
    base.Commit(savedState);
    String TargetDirectory = Path.GetDirectoryName(Context.Parameters["AssemblyPath"]);
    MessageBox.Show(TargetDirectory);
    // Code needed to read the checkboxes!
}

I have checkboxes and a dialogue added.

I need to be able to read the state of the boxes from a custom action. I also need the path which I have but I can't find how to read the state of the checkboxes.

How can this be done?

public override void Commit(IDictionary savedState)
{
    base.Commit(savedState);
    String TargetDirectory = Path.GetDirectoryName(Context.Parameters["AssemblyPath"]);
    MessageBox.Show(TargetDirectory);
    // Code needed to read the checkboxes!
}

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

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

发布评论

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

评论(1

孤独难免 2024-10-03 09:24:27

找到了!
在自定义操作中添加
/tool="[XYZ] " /MyInfo="[ABC] "

其中 XYZ 和 ABC 是 CheckboxNProperty

,然后在上面的自定义操作中读取它们,因此

MessageBox.Show(Context.Parameters["XYZ"]);

Found it!
in custom Actions add
/tool="[XYZ] " /MyInfo="[ABC] "

where XYZ and ABC are the CheckboxNProperty

then read them in in the custom action above thus

MessageBox.Show(Context.Parameters["XYZ"]);

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