如何在 TabControl 的 ItemTemplate 中找到任何控件?

发布于 2024-09-03 16:36:58 字数 710 浏览 5 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

简美 2024-09-10 16:36:58

您可以尝试 LogicalTreeHelper。查找逻辑节点。例如:

var button = LogicalTreeHelper.FindLogicalNode(myTabControl, "CloseScreen");

但要注意:因为您为选项卡项使用 DataTemplate,所以您最终会得到多个名为 CloseScreen 的按钮,而 FindLogicalNode 可能只会返回第一个。

另一种方法是使用 < 递归搜索逻辑树代码>LogicalTreeHelper.GetChildren。您在这里可能面临的问题是知道何时停止。

You could try LogicalTreeHelper.FindLogicalNode. For example:

var button = LogicalTreeHelper.FindLogicalNode(myTabControl, "CloseScreen");

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.

浮光之海 2024-09-10 16:36:58

如果您的意图是使用单击事件,请尝试使用命令。

If your intention is using the click event, try using a command instead.

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