我想更改设计器外部的组框的标签文本。我尝试了content
属性,但它不起作用。有帮助吗?
答案 0 :(得分:-1)
在设计中创建一个标签,如下所示:
<GroupBox Height="608" Margin="0,0,0,0" Width="375" x:Name="grp1">
<GroupBox.Header>
<Label Foreground="Blue" x:Name="lblGroupHeader"></Label>
</GroupBox.Header>
</GroupBox>
然后在代码中:
lblGroupHeader.Content = "The Name"