gpt4 book ai didi

c# - 捕获 ComboBox 项目单击

转载 作者:行者123 更新时间:2023-11-30 22:14:23 25 4
gpt4 key购买 nike

我有一个 WinForms ComboBox,它会记住之前输入过的项目。我想要一种删除以前条目的方法。我覆盖了 ComboBox 的 DrawItem 事件以呈现文本和 X 图标。 X 图标只是一个正方形图像,我将其缩放到项目的高度。代码非常简单。

// Enable the owner draw on the ComboBox.
ServerComboBox.DrawMode = DrawMode.OwnerDrawFixed;
// Handle the DrawItem event to draw the items.
ServerComboBox.DrawItem += delegate(object cmb, DrawItemEventArgs args)
{
// Draw the default background
args.DrawBackground();

String url = (String)ServerComboBox.Items[args.Index];

// Get the bounds for the first column
Rectangle r1 = args.Bounds;
r1.Width -= r1.Height;

// Draw the text
using (SolidBrush sb = new SolidBrush(args.ForeColor))
{
args.Graphics.DrawString(url, args.Font, sb, r1);
}

// Draw the X icon
Rectangle r2 = new Rectangle(r1.Width+1, r1.Y + 1, r1.Height - 2, r1.Height - 2);
args.Graphics.DrawImage(Project.Test.Properties.Resources.CloseIcon, r2);
};

现在我的问题是如何在单击 X 时进行捕获。我的第一个想法是捕获 ComboBox 的 MouseDown 事件并检查 DroppedDown 属性是否为真,但只有在单击未展开的 ComboBox 时才会触发该事件。如何从 ComboBox 的 DropDown 部分捕获事件。一旦我明白了这一点,我认为确定 X 是被点击还是现在就不是什么大问题了。

最佳答案

事实上你的问题只是一个 Win32 可以解决的小问题:

public class Form1 : Form {
[DllImport("user32")]
private static extern int GetComboBoxInfo(IntPtr hwnd, out COMBOBOXINFO comboInfo);
struct RECT {
public int left, top, right, bottom;
}
struct COMBOBOXINFO {
public int cbSize;
public RECT rcItem;
public RECT rcButton;
public int stateButton;
public IntPtr hwndCombo;
public IntPtr hwndItem;
public IntPtr hwndList;
}
public Form1(){
InitializeComponent();
comboBox1.HandleCreated += (s, e) => {
COMBOBOXINFO combo = new COMBOBOXINFO();
combo.cbSize = Marshal.SizeOf(combo);
GetComboBoxInfo(comboBox1.Handle, out combo);
hwnd = combo.hwndList;
init = false;
};
}
bool init;
IntPtr hwnd;
NativeCombo nativeCombo = new NativeCombo();
//This is to store the Rectangle info of your Icons
//Key: the Item index
//Value: the Rectangle of the Icon of the item (not the Rectangle of the item)
Dictionary<int, Rectangle> dict = new Dictionary<int, Rectangle>();
public class NativeCombo : NativeWindow {
//this is custom MouseDown event to hook into later
public event MouseEventHandler MouseDown;
protected override void WndProc(ref Message m)
{
if (m.Msg == 0x201)//WM_LBUTTONDOWN = 0x201
{
int x = m.LParam.ToInt32() & 0x00ff;
int y = m.LParam.ToInt32() >> 16;
if (MouseDown != null) MouseDown(null, new MouseEventArgs(MouseButtons.Left, 1, x, y, 0));
}
base.WndProc(ref m);
}
}
//DropDown event handler of your comboBox1
private void comboBox1_DropDown(object sender, EventArgs e) {
if (!init) {
//Register the MouseDown event handler <--- THIS is WHAT you want.
nativeCombo.MouseDown += comboListMouseDown;
nativeCombo.AssignHandle(hwnd);
init = true;
}
}
//This is the MouseDown event handler to handle the clicked icon
private void comboListMouseDown(object sender, MouseEventArgs e){
foreach (var kv in dict) {
if (kv.Value.Contains(e.Location)) {
//Show the item index whose the corresponding icon was held down
MessageBox.Show(kv.Key.ToString());
return;
}
}
}
//DrawItem event handler
private void comboBox1_DrawItem(object sender, DrawItemEventArgs e) {
//We have to save the Rectangle info of the item icons
Rectangle rect = new Rectangle(0, e.Bounds.Top, e.Bounds.Height, e.Bounds.Height);
dict[e.Index] = rect;
//Draw the icon
//e.Graphics.DrawImage(yourImage, rect);
}
}

一些关于发生的事情

ComboBox 有一个附加的下拉列表,可以通过它的Handle 访问它。我们使用 GetComboBoxInfo win32 api 函数来检索 ComboBox 的一些信息,这些信息保存在一个名为 COMBOBOXINFO 的结构中。我们可以通过该结构体中的成员hwndList获取下拉列表Handle

访问hwndList 之后。我们可以使用自定义 NativeWindow 类(示例中的 NativeCombo)连接到它的消息循环中。这使我们可以轻松地干扰下拉列表 的消息循环。然后我们可以捕获 WM_LBUTTONDOWN 消息来处理 MouseDown 事件。当然,这不是一个完整 MouseDown 事件,但它只是一个演示,在这种情况下足以解决问题。 WM_LBUTTONDOWNLParam 中保存的点击点 的一些信息一起发送。单击的点是在下拉列表客户区 的坐标中计算的(不是在屏幕坐标中)。我们应该注意到 DrawItem 事件处理程序也有 e.Bounds 参数,它也是在客户区坐标(不是屏幕坐标)中计算的。因此它们在同一个坐标系中。我们使用 Rectangle.Contains 方法来了解点击点是否包含在某些图标的边界中。我们将所有图标边界存储在一个字典中。所以包含点击点Rectangle对应的Key(存储Item索引)让我们知道相应的Item index,然后我们可以进一步处理。

关于c# - 捕获 ComboBox 项目单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18521110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com