元素名稱
替 XAML 元素指定一個名稱,使其能夠在 C# 程式碼中辨識該元素
<TextBlock x:Name="MyTextBlock" Text="文字區塊" />
可以在 C# 中使用:
MyTextBlock.Text = "Page1";
顯示/隱藏
<!-- 顯示(可見) -->
<TextBlock Visibility="Visible" Text="文字區塊" />
<!-- 隱藏(不可見) -->
<TextBlock Visibility="Collapsed" Text="文字區塊" />
參考資料:
Microsoft.Learn - x:Name Directive
留言
張貼留言
如果有任何問題、建議、想說的話或文章題目推薦,都歡迎留言或來信: a@ruyut.com