如何将选中的事件附加到wpf中DataTemplate中的CheckBox

发布于 2024-08-14 19:01:40 字数 401 浏览 3 评论 0原文

您好,我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红玫瑰 2024-08-21 19:01:40

利用 CheckBox.Checked 事件向上冒泡到其父控件的事实:

<ListView CheckBox.Checked="YourCheckedEventHandler">
    ...
</ListView>

显然,您必须检查在事件处理程序中检查了 CheckBox 的项目。最简单的方法是查看发送者参数的 DataContext,或者可能是“e”参数上的 Source 属性。

Use the fact that the CheckBox.Checked event bubbles up to its parent controls:

<ListView CheckBox.Checked="YourCheckedEventHandler">
    ...
</ListView>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文