본문 바로가기
WPF

02. WPF MVVM(1) View-ViewModel 연결

by NaHyungMin 2020. 8. 21.
 public AllotmentView()
 {
 	InitializeComponent();

	this.DataContext = new AllotmentViewModel(this);
}

 

AllotmentView라는 View 즉 Window가 있다.

 

public class AllotmentViewModel : PropertyChangedBase
{
	public AllotmentView ViewWindow { get; set; }
  
  	public AllotmentViewModel(AllotmentView viewWindow)
 	{
    		this.ViewWindow = viewWindow;
	}
 }

Window에 있는 정보를 가져다 쓸 경우가 있어서 만들때 정보를 보내놨다.

 

 

'WPF' 카테고리의 다른 글

07. WPF DataGrid Click 위치로 정보 가져오기  (0) 2020.08.21
06. WPF DataGridViewHelper  (0) 2020.08.21
04. WPF MVVM(3) RelayCommand  (0) 2020.08.21
03. WPF MVVM(2) INotifyPropertyChanged  (0) 2020.08.21
01. WPF DataGrid Text Center  (0) 2020.05.30