如何将选中的事件附加到wpf中DataTemplate中的CheckBox
您好,我在 Resource.Xaml 文件中定义的 DataTemplate
中定义了一个 CheckBox
。我在我的用户控件中使用这个DataTemplate
。我将此 DataTemplate
动态添加到 GridView
中。现在我想触发 CheckBox
的选中事件。我将如何附加该事件?我的Xaml是这样的:
<ListView>
<ListView.View>
<GridView></GridView>
</ListView.View>
</ListView>
Hi I am having a CheckBox
defined in a DataTemplate
which is defined in resource.Xaml file. I am using this DataTemplate
in my user control. I am adding this DataTemplate
dynamically to a GridView
. Now I want to fire the checked event of a CheckBox
. How will I attach the event? My Xaml is like this:
<ListView>
<ListView.View>
<GridView></GridView>
</ListView.View>
</ListView>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
利用 CheckBox.Checked 事件向上冒泡到其父控件的事实:
显然,您必须检查在事件处理程序中检查了 CheckBox 的项目。最简单的方法是查看发送者参数的 DataContext,或者可能是“e”参数上的 Source 属性。
Use the fact that the CheckBox.Checked event bubbles up to its parent controls:
Obviously you'll have to check the item whose CheckBox was checked in the event handler. The easiest way to do that is to look at the DataContext of the sender parameter, or possibly the Source property on the "e" parameter.