コード例 #1
0
        public MainWindow()
        {
            InitializeComponent();
            LCRGameViewModel ObjViewModel = new LCRGameViewModel();
            LCRGameView      ObjView      = new LCRGameView(ObjViewModel);

            this.Content = ObjView;
        }
コード例 #2
0
 public LCRGameView(LCRGameViewModel ViewModel)
 {
     this.DataContext = ViewModel;
     InitializeComponent();
 }