我有一个包含名为Text的字符串属性的类。
public class Time
{
private string _text;
public string Text
{
get { return _text; }
set { _text = value; }
}
}
我还有一个包含此类的自定义UserControl。
public partial class MyUserControl : UserControl, INotifyPropertyChanged
{
<...>
private Time _myTime;
public Time MyTime
{
get { return _myTime; }
set { _myTime= value; NotifyPropertyChanged(); }
}
}
从我的ViewModel,我想创建上面的UserControl并为其分配一个Time类及其所有属性:
void SomeMethod()
{
Time TestTime = new Time();
TestTime.Text = "Hello world";
MyUserControl control = new MyUserControl();
control.MyTime = TestTime;
controlViewer = new System.Collections.ObjectModel.ObservableCollection<Control>();
controlViewer.Add(control);
// on my main window, I have an ItemsControl with
// ItemsSource="{Binding controlViewer}".
}
UserControl的XAML包含此TextBox:
<TextBox Text="{Binding MyTime.Text}"/>
然后我能够以编程方式调用control.MyTime.Text属性并获得“Hello world”值 - 但我无法在新创建的MyUserControl文本框中显示它。
答案 0 :(得分:2)
您必须将绑定的源对象设置为UserControl实例,例如通过像这样设置Binding的RelativeSource
属性:
<TextBox Text="{Binding MyTime.Text,
RelativeSource={RelativeSource AncestorType=UserControl}}"/>
除此之外,在视图元素中实现INotifyPropertyChanged
接口并不常见。您可以改为将MyTime
声明为依赖属性:
public static readonly DependencyProperty MyTimeProperty =
DependencyProperty.Register("MyTime", typeof(Time), typeof(MyControl));
public Time MyTime
{
get { return (Time)GetValue(MyTimeProperty); }
set { SetValue(MyTimeProperty, value); }
}
答案 1 :(得分:0)
在ViewModel中创建UserControl并不是一个好习惯。 尝试以下一种方式做到这一点:
此致