我目前有以下内容:
public static readonly DependencyProperty IsCopyEnabledProperty =
DependencyProperty.Register(
"IsCopyEnabled",
typeof(bool),
typeof(MainWindow));
public bool IsCopyEnabled
{
get { return (bool)GetValue(IsCopyEnabledProperty); }
set { SetValue(IsCopyEnabledProperty, value); }
}
我将此绑定到我创建的按钮,以确定是否应该启用或禁用它。我通常调用以下命令来更改 IsCopyEnabled 中声明的类的值:
IsCopyEnabled = !IsCopyEnabled;
我想知道如何在另一个类中更改 IsCopyEnabled 的值(虽然相同的命名空间)。