c#wpf在引用中定义的访问对象

时间:2018-05-20 07:41:42

标签: c# wpf

一个简单的场景来展示我的问题:

<Window.Resources>
    <DataTemplate x:Key=myTemplate>
        <Grid x:Name="myGrid">
            <TextBox x:Name="myTextbox" />
        </Grid>
    </DataTemplate>
<Window.Resources>

<Window>
    <Grid x:Name="mainGrid">
        <ContentControl x:Name="myContent" Source="{Binding}" ContentTemplate="{StaticResource myTemplate}" />
    </Grid>
</Window>

如何从C#代码访问TextBox'myTextbox'?

1 个答案:

答案 0 :(得分:0)

使用该方法 frameworktemplate.FindName其中framework元素是您的数据模板