尝试启用未更改的按钮,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
答案 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; }