如何从Codebehind访问WPF HelpPaneContentTemplate项?

时间:2018-02-21 14:54:28

标签: wpf code-behind contenttemplate

这是一个HelpPaneContentTemplate:

<r:Ribbon.HelpPaneContentTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <TextBlock 
                            Name="lbl_Help" 
                            Text="1234" 
                            VerticalAlignment="Center"  />
                        <r:RibbonButton 
                            Name="rbhelp"
                            SmallImageSource="Icons/help.ico" 
                            Command="Help" 
                    />
                    </StackPanel>
                </DataTemplate>
            </r:Ribbon.HelpPaneContentTemplate>

我的问题 - &gt;我如何能够访问TextBlock(这里命名为lbl_Help)来更新Codebehind中的Text? 我尝试使用&#34; FindName&#34;但我不知道如何引用HelpPaneContentTemplate来正确调用Findname。

0 个答案:

没有答案