私はビューを持っています:
<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
}
私の目的: 実行時に、メイン ビュー内のいくつかのビュー (BottomControl) を変更します。しかし、XXXプロパティがわからないので、適切なバインドができません。
ありがとう