如何在 TabControl 的 ItemTemplate 中找到任何控件?
我有一个 TabControl
<TabControl
Name="myTabControl"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}">
<TabControl.ItemTemplate>
<DataTemplate>
<DockPanel Width="120">
<Button Name="CloseScreen"/>
<ContentPresenter Content="{Binding Path=DisplayName}"/>
</DockPanel>
</DataTemplate>
</TabControl.ItemTemplate>
</TabControl>
我想从代码中找到位于 ItemTemplate 中的按钮。
谢谢。
I have a TabControl
<TabControl
Name="myTabControl"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}">
<TabControl.ItemTemplate>
<DataTemplate>
<DockPanel Width="120">
<Button Name="CloseScreen"/>
<ContentPresenter Content="{Binding Path=DisplayName}"/>
</DockPanel>
</DataTemplate>
</TabControl.ItemTemplate>
</TabControl>
I want to find the button which is located in the ItemTemplate from code.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试 LogicalTreeHelper。查找逻辑节点。例如:
但要注意:因为您为选项卡项使用 DataTemplate,所以您最终会得到多个名为 CloseScreen 的按钮,而 FindLogicalNode 可能只会返回第一个。
另一种方法是使用 < 递归搜索逻辑树代码>LogicalTreeHelper.GetChildren。您在这里可能面临的问题是知道何时停止。
You could try LogicalTreeHelper.FindLogicalNode. For example:
But beware: because you're using a DataTemplate for your tab items, you'll end up with multiple buttons called CloseScreen, and FindLogicalNode will probably only return the first.
Another approach is to search the logical tree recursively using
LogicalTreeHelper.GetChildren
. The problem you might face here is knowing when to stop.如果您的意图是使用单击事件,请尝试使用命令。
If your intention is using the click event, try using a command instead.