0
我有一個類MainWindow.xaml.cs
:如何按鈕的內容綁定到靜態只讀領域
namespace HomeSecurity {
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window, INotifyPropertyChanged {
public static readonly string START = "start", RESET = "RESET";
.....
}
有在MainWindow.xaml
一個按鈕:
<Button x:Name="AcceptCamerasButton" Content="{x:Static local:MainWindow.START}" Grid.Row="1" Click="AcceptCamerasButton_Click"></Button>
如何給該按鈕的內容設置爲MainWindow.Start
?當前版本不起作用。
編輯: 我宣佈:
xmlns:local="clr-namespace:HomeSecurity"
,但仍當我使用:
<Button x:Name="AcceptCamerasButton" Content="{x:Static local:MainWindow.START}" Grid.Row="1" Click="AcceptCamerasButton_Click"></Button>
我得到:
Error 1 The member "START" is not recognized or is not accessible.
如何定義只讀靜態屬性。你可以聲明和初始化START屬性嗎? – Yoda
@Yoda是的,當然。我剛剛更新了相關詳細信息的答案 –
請你能看到我編輯過的原始文章嗎? – Yoda