출처: https://tip1234.tistory.com/212?category=842024
Xaml
- xaml은 Extensible Application Markup Language으로 마크업 언어
- 마크업 언어는 '태그'를 이용해서 데이터 구조를 명시적으로 정의함
- WPF 프로젝트 생성 시 MainWindow.xaml(디자인 코드), MainWindow.xaml.cs(코드 비하인드) 생성
<Window~~~~~~~~~>로 시작해서 </Window>로 끝남, <Window> ... </Window> 사이에 원하는 코드를 입력
- Control(Grid) 생성하고 Control 상속 구조에 따라 다양한 Property(Width, Height, Content) 추가 가능