如何使用复选框选项禁用 C# Winform Treeview 控件中的特定复选框?

发布于 2024-12-01 16:30:02 字数 278 浏览 1 评论 0原文

可能的重复:
TreeView 删除某些节点的复选框

在我的 C# Windows 窗体应用程序中,我有 Treeview使用复选框进行控制。

我想阻止用户检查特定节点的复选框。如何阻止用户检查特定的内容?

Possible Duplicate:
TreeView Remove CheckBox by some Nodes

In my C# Windows Form Application, I have Treeview control with checkboxes.

I want to prevent the user from checking particular nodes' checkboxes. How can stop the user from being able to check particular ones?

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

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

发布评论

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

评论(1

白日梦 2024-12-08 16:30:02

TreeView.AfterCheck 事件 是其中之一防止检查节点的选项。我发现这是一种简单的方法。但可以有更好的方法。

private void node_AfterCheck(object sender, TreeViewEventArgs e)
{
   // The code only executes if the user caused the checked state to change.
   if(e.Action != TreeViewAction.Unknown)
   {
      if(e.Node.Nodes.Count > 0)
      {
         //Check whether that is a valid checkbox
         // If not you can uncheck it.
      }
   }
}

编辑

隐藏复选框。请查看此处科迪·格雷的回答。

TreeView.AfterCheck Event is one option to prevent checking nodes. I find this is an easy way of doing it. But there can be better ways.

private void node_AfterCheck(object sender, TreeViewEventArgs e)
{
   // The code only executes if the user caused the checked state to change.
   if(e.Action != TreeViewAction.Unknown)
   {
      if(e.Node.Nodes.Count > 0)
      {
         //Check whether that is a valid checkbox
         // If not you can uncheck it.
      }
   }
}

Edit

To hide the checkboxes. Look at Cody Gray's answer here.

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