我需要能够禁用WinForms应用程序的TreeView控件中的一些复选框,但是标准TreeView控件没有内置这样的功能。
我已经在使用TreeView.BeforeCheck事件并取消它,如果该节点被禁用并且完全正常。
我还将已禁用节点的ForeColor更改为GrayText。
有没有人有一个简单而强大的解决方案?
答案 0 :(得分:33)
由于C ++支持我们可以使用p / invoke解决它。
这是p / invoke部分的设置,只是让它可用于调用类。
// constants used to hide a checkbox
public const int TVIF_STATE = 0x8;
public const int TVIS_STATEIMAGEMASK = 0xF000;
public const int TV_FIRST = 0x1100;
public const int TVM_SETITEM = TV_FIRST + 63;
[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam,
IntPtr lParam);
// struct used to set node properties
public struct TVITEM
{
public int mask;
public IntPtr hItem;
public int state;
public int stateMask;
[MarshalAs(UnmanagedType.LPTStr)]
public String lpszText;
public int cchTextMax;
public int iImage;
public int iSelectedImage;
public int cChildren;
public IntPtr lParam;
}
我们希望逐个节点地确定。最简单的方法是绘制节点事件。我们必须将树设置为为此事件绘制的所有者,因此请务必将其设置为默认设置以外的其他内容。
this.tree.DrawMode = TreeViewDrawMode.OwnerDrawText;
this.tree.DrawNode += new DrawTreeNodeEventHandler(tree_DrawNode);
在tree_DrawNode函数中,确定正在绘制的节点是否应该有一个复选框,并在适当时隐藏它。然后将Default Draw属性设置为true,因为我们不想担心绘制所有其他细节。
void tree_DrawNode(object sender, DrawTreeNodeEventArgs e)
{
if (e.Node.Level == 1)
{
HideCheckBox(e.Node);
e.DrawDefault = true;
}
else
{
e.Graphics.DrawString(e.Node.Text, e.Node.TreeView.Font,
Brushes.Black, e.Node.Bounds.X, e.Node.Bounds.Y);
}
}
最后,实际调用我们定义的函数:
private void HideCheckBox(TreeNode node)
{
TVITEM tvi = new TVITEM();
tvi.hItem = node.Handle;
tvi.mask = TVIF_STATE;
tvi.stateMask = TVIS_STATEIMAGEMASK;
tvi.state = 0;
IntPtr lparam = Marshal.AllocHGlobal(Marshal.SizeOf(tvi));
Marshal.StructureToPtr(tvi, lparam, false);
SendMessage(node.TreeView.Handle, TVM_SETITEM, IntPtr.Zero, lparam);
}
答案 1 :(得分:1)
这是PowerShell版本,非常感谢@ sam-trost的救命代码!
P /调用:
$TypeDefinition = @'
using System;
using System.Runtime.InteropServices;
namespace Win32Functions {
public class Win32TreeView {
// constants used to hide a checkbox
public const int TVIF_STATE = 0x8;
public const int TVIS_STATEIMAGEMASK = 0xF000;
public const int TV_FIRST = 0x1100;
public const int TVM_SETITEM = TV_FIRST + 63;
[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
// struct used to set node properties
public struct TVITEM
{
public int mask;
public IntPtr hItem;
public int state;
public int stateMask;
[MarshalAs(UnmanagedType.LPTStr)]
public String lpszText;
public int cchTextMax;
public int iImage;
public int iSelectedImage;
public int cChildren;
public IntPtr lParam;
}
}
}
'@
Add-Type -TypeDefinition $TypeDefinition -PassThru
事件处理程序:
$TreeView1_DrawNode = [System.Windows.Forms.DrawTreeNodeEventHandler]{
#Event Argument: $_ = [System.Windows.Forms.DrawTreeNodeEventArgs]
if ($null -ne $_.Node) {
# P/invoke hack to hide Node CheckBox
if ($_.Node.Level -eq 0) {
Hide-NodeCheckBox($_.Node)
}
$_.DrawDefault = $true
}
}
TreeView:
$TreeView1.DrawMode = [TreeViewDrawMode]::OwnerDrawText
$TreeView1.add_DrawNode($TreeView1_DrawNode)
功能:
function Hide-NodeCheckBox([TreeNode]$node) {
# P/invoke hack to hide Node CheckBox
if ($node.TreeView.CheckBoxes) {
$tvi = [Win32Functions.Win32TreeView+TVITEM]::new()
$tvi.hItem = $node.Handle
$tvi.mask = [Win32Functions.Win32TreeView]::TVIF_STATE
$tvi.stateMask = [Win32Functions.Win32TreeView]::TVIS_STATEIMAGEMASK
$tvi.state = 0
[IntPtr]$lparam = [Marshal]::AllocHGlobal([Marshal]::SizeOf($tvi))
[Marshal]::StructureToPtr($tvi, $lparam, $false)
[Win32Functions.Win32TreeView]::SendMessage($node.TreeView.Handle, [Win32Functions.Win32TreeView]::TVM_SETITEM, [IntPtr]::Zero, $lparam)
}
}
答案 2 :(得分:0)
TreeView.BeforeCheck - 注册此事件,检查节点是否是允许检查复选框的节点,如果无法检查,则可以通过在TreeViewCancelEventArgs上设置Cancel属性来取消事件。这应该有希望阻止用户检查这些盒子,但不会带来最好的用户体验。
要删除不可检查项目的复选框,您可以使用所有者绘制在复选框上绘制一个实心矩形以将其删除。
答案 3 :(得分:0)
没有内置任何东西可以做到这一点。您可以使用BeforeCheck事件并为所需节点取消它。如果复选框的外观很重要,那么您需要在那里放置一个图像以显示禁用的复选框。
此link可能符合您的利益。