如何在c#中将文本框或文本块插入边框? 现在我有了这个:
Border notificationBorder1 = new Border();
LayoutGrid.Children.Add(notificationBorder1);
TextBlock notificationTxt1 = new TextBlock();
但我不知道如何将文本框插入边框。 我试图谷歌,但没有发现任何东西,只是如何更改文本框边框颜色。
由于
答案 0 :(得分:-2)
将其放在xaml
中<Border>
<TextBlock></TextBlock>
</Border>
如果您想在代码中执行此操作,那么只需
notificationBorder1.Child = notificationTxt1;