我需要帮助如何访问.cs
文件中的控件名称,因为我的xaml
显示在下面
<StackPanel>
<TextBlock Text="Select what you want to keep in this order for Invoicing purpose." FontFamily="TimesNewRoman" FontSize="12" FontWeight="Bold"></TextBlock>
<TextBlock Text=""></TextBlock>
<CheckBox
Visibility="Visible"
Name="selectAll"
答案 0 :(得分:1)
您可以为控件指定名称为x:Name
的
<TextBlock x:Name="myTextBlock" Text="Select what you want to keep in this order for Invoicing purpose." FontFamily="TimesNewRoman" FontSize="12" FontWeight="Bold"></TextBlock>
然后在代码中访问它,如
this.myTextBlock.Text = "Bla"
请注意,控件是在构造函数的InitializeComponent();
调用中实例化的,因此您无法事先在该调用之后引用它们。