作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我在具有 DependencyProperty 的控件的 DataContext 中有一个 ViewModel:
AControl.cs:
class AControl : Control /* could be another class e.g. Viewbox, Label */
{
public AControl()
{
DataContext = new AControlViewModel(/* this ?? */);
}
public int AProperty
{
get { return (int)GetValue(APropertyProperty); }
set { SetValue(APropertyProperty, value); }
}
public static readonly DependencyProperty APropertyProperty =
DependencyProperty.Register("AProperty", typeof(int),
typeof(AClass), new FrameworkPropertyMetadata(0));
}
class AControlViewModel : ViewModelBase
{
void SomeMethod()
{
// Some actions accessing AProperty for the Control
// in whose DataContext 'this' is in
}
// EDIT: Property added
private int vMProperty;
public int VMProperty
{
get { return vMProperty; }
set
{
if (vMProperty == value)
return;
vMProperty = value;
OnPropertyChanged("VMProperty"); // In ViewModelBase
}
}
}
<Style TargetType="{x:Type namespace:AnotherControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type namespace:AnotherControl}">
<Border>
<namespace:AControl AProperty="{TemplateBinding AnotherProperty}">
<!-- This Binding replaces the Binding 'AProperty="{Binding VMProperty}' inside AControl.
I think I have to bind to VMProperty instead of AProperty... but how?-->
</namespace:AControl>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
最佳答案
向 ViewModel 添加一个属性(包括 INotifyPropertyChanged 实现)并将其绑定(bind)到 View 的属性。
就是这样。
现在您可以在 View 中访问属性的值。
不要试图在 ViewModel 中获取对 View 的引用,那样会破坏 MVVM 模式。
关于c# - 在 ViewModel 中访问 DependencyPropertyValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17889687/
假设我在具有 DependencyProperty 的控件的 DataContext 中有一个 ViewModel: AControl.cs: class AControl : Control /*
我是一名优秀的程序员,十分优秀!