我如何从后面的代码修改WPF Button的isEnabled属性

时间:2015-03-19 10:46:36

标签: c# wpf

尝试启用未更改的按钮,Am在另一个Web应用程序中使用此WPF项目。以下是我的代码。

  this.btnChkOut.IsEnabled = true;
   MessageBox.Show(btnChkOut.IsEnabled.ToString());

<Button IsEnabled="False" ToolTipService.ToolTip="CheckOut" x:Name="btnChkOut"      Opacity="1" Width="20" Height="20" Margin="2"
                     Click="btnChkOut_Click">Check Out

1 个答案:

答案 0 :(得分:-1)

尝试改为使用Binding。

<Button IsEnabled="{Binding IsButtonEnabled}" ToolTipService.ToolTip="CheckOut" x:Name="btnChkOut"      Opacity="1" Width="20" Height="20" Margin="2"
                     Click="btnChkOut_Click">

public bool IsButtonEnabled { get; set; }