通过单击代码添加的ListBoxItem来调用事件,可以通过以下步骤实现:
ListBox listBox = new ListBox();
listBox.Name = "myListBox";
ListBoxItem item = new ListBoxItem();
item.Content = "Item 1";
item.MouseLeftButtonUp += Item_MouseLeftButtonUp; // 绑定鼠标左键点击事件
listBox.Items.Add(item);
private void Item_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
ListBoxItem clickedItem = (ListBoxItem)sender;
MessageBox.Show("You clicked: " + clickedItem.Content.ToString());
}
在上述代码中,我们首先将sender对象转换为ListBoxItem类型,然后获取其内容并显示在消息框中。
这是一个基本的示例,你可以根据自己的需求进行扩展和定制。关于ListBox、ListBoxItem和事件处理程序的更多详细信息,你可以参考腾讯云的官方文档和相关教程:
领取专属 10元无门槛券
手把手带您无忧上云