博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ContextMenu 中获得选中的 Item
阅读量:5069 次
发布时间:2019-06-12

本文共 676 字,大约阅读时间需要 2 分钟。

private void MenuItem_Click(object sender, RoutedEventArgs e)
{
   
string header = (sender as MenuItem).Header.ToString();
 
   
ListBoxItem selectedListBoxItem = this.listBox.ItemContainerGenerator.ContainerFromItem((sender as MenuItem).DataContext) as ListBoxItem;
   
if (selectedListBoxItem == null)
   
{
       
return;
   
}
 
   
if (header == "Add Color")
   
{
       
selectedListBoxItem.Background = new SolidColorBrush(Colors.Red);
   
}
   
else
   
{
       
selectedListBoxItem.Background = new SolidColorBrush(Colors.Black);
   
}
 
   
//To highlight the tapped item just use something like selectedListBoxItem.Background = new SolidColorBrush(Colors.Green);
}
参考地址:

转载于:https://www.cnblogs.com/hebeiDGL/archive/2011/11/20/2256281.html

你可能感兴趣的文章
BZOJ1045 HAOI2008 糖果传递
查看>>
JavaScript 克隆数组
查看>>
eggs
查看>>
一步步学习微软InfoPath2010和SP2010--第七章节--从SP列表和业务数据连接接收数据(4)--外部项目选取器和业务数据连接...
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
基于grunt构建的前端集成开发环境
查看>>
利用循环播放dataurl的视频来防止锁屏:NoSleep.js
查看>>
python3 生成器与迭代器
查看>>
java编写提升性能的代码
查看>>
Abstract Factory Pattern
查看>>
list 容器 排序函数.xml
查看>>
《Genesis-3D开源游戏引擎完整实例教程-跑酷游戏篇03:暂停游戏》
查看>>
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
windows下编译FreeSwitch
查看>>
git .gitignore 文件不起作用
查看>>
Alan Turing的纪录片观后感
查看>>
c#自定义控件中的事件处理
查看>>
django Models 常用的字段和参数
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>