일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- atmega328
- file access
- Unity
- Overloading
- Contour
- memory
- Encapusulation
- APP
- Read
- mfc
- Class
- inheritance
- digitalRead
- length
- Barcode
- compare
- stream
- SERIAL
- aduino
- Android
- public
- wpf
- parameter
- flutter
- Binary
- UNO
- sensor
- Pointer
- preprocessing
- Today
- Total
폴크(FOLC)
WPF 테크닉 - Page 전환 본문
# Main 화면에 표시되는 영역의 정보를 페이지 단위로 변경
> 1개 Category ROI 안에 N개 Category Page 로 구성
> Page1, Page2, Page3, ...
# Main 화면에서 각 페이지를 선택하여 화면에 표시
> xaml 파일에 3개의 버튼을 생성하고 각 버튼에 Event 를 설정한다.
# 소스 코드 ( MainWindow.xaml )
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="5*"/>
</Grid.RowDefinitions>
<Button Content="Button1" HorizontalAlignment="Left" Height="53" Margin="20,10,0,0" VerticalAlignment="Top" Width="80" Click="Button_Click_1"/>
<Button Content="Button2" HorizontalAlignment="Left" Height="53" Margin="105,10,0,0" VerticalAlignment="Top" Width="82" Click="Button_Click_2"/>
<Button Content="Button3" HorizontalAlignment="Left" Height="53" Margin="192,10,0,0" VerticalAlignment="Top" Width="84" Click="Button_Click_3"/>
<Frame Name="PageHome" Grid.Row="1" Grid.Column="0" Source="NaviPage\Page1.xaml" NavigationUIVisibility="Hidden"/>
</Grid>
# 소스 코드 ( MainWindow.xaml.cs )
private void Button_Click_1(object sender, RoutedEventArgs e)
{
PageHome.Source = new Uri("NaviPage\\Page1.xaml", UriKind.Relative);
}
private void Button_Click_2(object sender, RoutedEventArgs e)
{
PageHome.Source = new Uri("NaviPage\\Page2.xaml", UriKind.Relative);
}
private void Button_Click_3(object sender, RoutedEventArgs e)
{
PageHome.Source = new Uri("NaviPage\\Page3.xaml", UriKind.Relative);
}
'C#, WF, WPF(.NET) > C#, WF, WPF(.NET) 테크닉' 카테고리의 다른 글
C# 테크닉 - 파일 제어( INI format ) (0) | 2021.11.29 |
---|---|
C# 테크닉 - Page 전환 (0) | 2021.11.12 |
C# 테크닉 - 이미지 캡처 ( 크롤링 ) (0) | 2021.11.09 |
C# 테크닉 - 이미지 뷰어 만들기 (0) | 2021.10.26 |
C# 테크닉 - 로그 기록하기 ( log4net ) (0) | 2021.10.13 |