一个简单的场景来展示我的问题:
<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'?
答案 0 :(得分:0)
使用该方法 frameworktemplate.FindName其中framework元素是您的数据模板