반응형
MainWindow에 프레임과 버튼 t1, t2를 배치합니다.
페이지 추가 : Page1 , Page2
프로젝트 구조
MainWindow에 페이지 전환 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Controls.Primitives;
namespace WpfController
{
/// <summary>
/// MainWindow.xaml에 대한 상호 작용 논리
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void t1_Click(object sender, RoutedEventArgs e)
{
frame_content.Source = new Uri("Page1.xaml", UriKind.Relative);
}
private void t2_Click(object sender, RoutedEventArgs e)
{
frame_content.Source = new Uri("Page2.xaml", UriKind.Relative);
}
private void button4_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
}
}
|
cs |
결과 보기
소스 코드(2010)
참고 사이트
반응형
'프로그래밍 > C Sharp' 카테고리의 다른 글
[c#] Zedgraph 박스 그리기 (0) | 2022.02.04 |
---|---|
[C#] 람다식과 델리게이트 , 이벤트 비교 (0) | 2022.01.19 |
[ C# ] DataTable CSV 읽고 쓰기 (0) | 2022.01.13 |
[ C# ] 누겟 라이브러리 없이 텔레그램 메시지 보내기 (0) | 2022.01.04 |
[ C# ] LS 산전 PLC 이더넷 통신하기-응답 데이터 분석 (3) | 2021.12.07 |
댓글