如何在C#中使用checkList的comboBox?帶校驗列表的組合框
1
A
回答
1
我一直在搞這個自己。這裏有一個Control的小樣本,它裏面有真正的CheckBox,而不僅僅是繪製它們。這樣你就可以真正使用CheckBox類所提供的一切。它用一個繼承ToolStripDropDownMenu的自定義工具取代了ComboBox的常規下拉菜單,該工具允許您將實際控件添加到ToolStripDropDownMenu中,並可以解決每次單擊某個項目時下拉關閉的問題。你顯然想要擴展MyComboBox類來適應你的需求,但它應該是一個很好的開始。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
var mcb = new MyComboBox() { Left = 6, Top = 6 };
this.Controls.Add(mcb);
for (int i = 0; i < 20; i++)
{
mcb.AddItem("Item " + i.ToString());
}
}
}
public class MyComboBox : ComboBox
{
private MyDropDown _dropDown;
public MyComboBox()
{
_dropDown = new MyDropDown() { Width = 200, Height = 200 };
}
public void AddItem(string text)
{
_dropDown.AddControl(new CheckBox() { Text = text });
}
public void ShowDropDown()
{
if (_dropDown != null)
{
_dropDown.Show(this);
}
}
protected override void WndProc(ref Message m)
{
if (m.Msg == WndUI.WM_REFLECT + WndUI.WM_COMMAND)
{
if (WndUI.HIWORD(m.WParam) == WndUI.CBN_DROPDOWN)
{
ShowDropDown();
return;
}
}
base.WndProc(ref m);
}
}
[ToolboxItem(false)]
public class MyDropDown : ToolStripDropDownMenu
{
public MyDropDown()
{
this.ShowImageMargin = this.ShowCheckMargin = false;
this.AutoSize = false;
this.DoubleBuffered = true;
this.Padding = Margin = Padding.Empty;
}
public int AddControl(Control control)
{
var host = new ToolStripControlHost(control);
host.Padding = host.Margin = Padding.Empty;
host.BackColor = Color.Transparent;
return this.Items.Add(host);
}
public void Show(Control control)
{
Rectangle area = control.ClientRectangle;
Point location = control.PointToScreen(new Point(area.Left, area.Top + area.Height));
location = control.PointToClient(location);
Show(control, location, ToolStripDropDownDirection.BelowRight);
this.Focus();
}
}
public static class WndUI
{
public const int
WM_USER = 0x0400,
WM_REFLECT = WM_USER + 0x1C00,
WM_COMMAND = 0x0111,
CBN_DROPDOWN = 7;
public static int HIWORD(IntPtr n)
{
return HIWORD(unchecked((int)(long)n));
}
public static int HIWORD(int n)
{
return (n >> 16) & 0xffff;
}
}
0
相關問題
- 1. 的WinForms組合框 - 如何校驗值
- 2. c#多列列校驗列表框中的KeyValuePair列表
- 3. 帶鹽的MD5校驗和
- 4. 帶WPF組合框的多列項目
- 5. Excel 2010中的數據驗證列表,組合框或活動X組合框?
- 6. 使用帶有組合框的表單時,使用組合框還原表單
- 7. 組合框和列表框的問題
- 8. 找到整數列表的校驗和
- 9. 組合框 - 下拉列表
- 10. 從列表到組合框
- 11. 組合框對象列表
- 12. WCF - 列表組合框
- 13. 組合框驗證
- 14. 組合框驗證
- 15. 如何使用帶有組合框的列表/地圖
- 16. 帶有對象列表的多個組合框
- 17. 校驗數組元素的
- 18. C# - 比較組合框和列表項目的組合框
- 19. 從組合框列表中選擇兩個組合框的值?
- 20. 帶複選框的Flex列表組件
- 21. 校驗和用於合併?
- 22. Yii的組合框驗證
- 23. 的XPages驗證組合框
- 24. 帶有複選框的Wpf組合框
- 25. 帶複選框的ExtJs 4組合框
- 26. 帶複選框的WPF組合框
- 27. 組合框列表框刷新
- 28. 組合框/列表框選定項目
- 29. 組合框子類化列表框
- 30. 列表框與組合框DataTemplate綁定
什麼平臺?並且請提供您正在尋找的功能的更多細節。你到目前爲止做了什麼? – decyclone 2011-02-07 08:33:16