綁定控制我有看法:WPF - 如何通過MVVM
<Grid>
<!--Some Stuff-->
<Control XXX="{Binding ButtomControl}"/>
<!--Some Stuff-->
</Grid>
我有VM:
public sealed class SelectionDialogV3VM : PropertyChanges
{
// Some Stuff
public Control ButtomControl
{
get{return _buttomControl;}
set
{
_buttomControl = value;
OnPropertyChanged("ButtomControl");
}
}
// Some Stuff
}
我的目標是:在運行時更改我的主視圖裏面的一些觀點(ButtomControl) 。 但是,我不能做適當的綁定,因爲我不知道XXX屬性。
感謝
A控制了ViewModel無關。 –