我有一个由 ToolBarTray 和 ToolBar 组成的 ControlTemplate。在我的工具栏中,我有几个按钮,然后是一个标签。我希望能够使用“1 of 10”之类的内容更新工具栏中的标签
我的第一个想法是以编程方式找到标签并设置它,但我读到这应该用触发器来完成。我很难理解如何做到这一点。有任何想法吗?
<Style x:Key="DocViewerToolBarStyle" TargetType="{x:Type ContentControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ContentControl}">
<ToolBarTray... />
<ToolBar.../>
<Button../>
<Button..>
<Label x:Name="myStatusLabel" .. />