我有这样的用户控制:
<Grid x:Name="LayoutRoot" Background="Transparent">
<Image Source="/Images/btn1_normal@2x.png" Stretch="Fill" />
<TextBlock x:Name="Text" Text="Button" Foreground="Black"
VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
我在另一个 XAML 中使用这个 userControl,如下所示:
<MyControlls:MyButton Width="90" Height="55"/>
现在我如何访问这个 XAML 中名为 Text 的 textBlock 并更改他的文本(在 Windows phone 8 中)?像这样的东西:
<MyControlls:MyButton Width="90" Height="55">
<MyButton.Text Text="Hello World!" />
</MyControlls:MyButton>`
谢谢你。