我试图遵循这个article,唯一的区别是我在后面的代码中创建和绑定控件。 不幸的是它不起作用。这是我的示例代码:
public partial class ShellWindow
{
private static Visibility progressbarVisibility = Visibility.Collapsed;
public static Visibility ProgressbarVisibility
{
get { return progressbarVisibility; }
set
{
if (progressbarVisibility == value) return;
progressbarVisibility = value;
RaiseStaticPropertyChanged("ProgressbarVisibility");
}
}
public static event EventHandler<PropertyChangedEventArgs> StaticPropertyChanged;
public static void RaiseStaticPropertyChanged(string propName)
{
EventHandler<PropertyChangedEventArgs> handler = StaticPropertyChanged;
if (handler != null)
handler(null, new PropertyChangedEventArgs(propName));
}
}
我这样绑定
var binding = new Binding("ShellWindow.ProgressbarVisibility") { Mode = BindingMode.TwoWay };
progressbar = new CircularProgressBar ();
progressbar.SetBinding(VisibilityProperty,
binding);
我想我错过了什么,但我不确定我错在哪里。 任何帮助都会很棒。
答案 0 :(得分:5)
文章说使用:
{Binding (local:Repository.Color)}
由于local:
在XAML文件之外没有任何意义,我认为不可能用字符串构造绑定。
您还可以将PropertyPath分配给Binding.Path
媒体资源,this PropertyPath constructor接受PropertyInfo
。要使用此构造函数,需要以标记化格式指定路径字符串(描述为here)。因此:
var propertyInfo = typeof(ShellWindow).GetProperty("ProgressbarVisibility");
var propertyPath = new PropertyPath("(0)", propertyInfo);
var binding = new Binding() { Path = propertyPath, Mode = BindingMode.TwoWay };