WPF

Window.Xaml

WPF

■MainWindow.Xaml

App.Xaml

WPF

■App.Xaml <Application x:Class="WpfApp1.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfApp1" StartupUri="MainWindow.xaml"> <Application.Resources> </Application.Resources></Application> ・x:Cl…

View ViewModel Modelの責務

WPF

■View:画面。ユーザインターフェース。情報の表示やユーザ入力を受ける。 ViewModeに依存 InitializeCompornet以外、コードビバインドに描くべきではない ■ViewModel:表示する情報の保持、変換。Modelの操作。Modelの参照。 View ModelはViewを参照しない…