728x90
사이트
WPF
영상
WPF
<TextBox Text = "{Binding}" ... />
<Label Content="{Binding}" ... />
체크유무에 따라 사라졌다 나타났다
<Window.Resources>
<BooleanToVisibilityConverter x:Key="myConverter"
</Window.Resources>
<Rectangle Visibility="{Binding ElementName=CBOX(바인딩할태그의NAME), Path=IsChecked, Converter={StaticResource myConverter}}" .../>
<CheckBox Name="CBox" IsChecked="True" Content="Button" .../>
- How to Switch Themes in a WPF App at Runtime (라이트모드/다크모드)
- WPF C# Professional Modern Chat App UI Tutorial
- WPF MVVM Tutorial: Build An App with Data Binding and Commands
- WPF - Open a New Window on Button Command | MVVM | UI Design | XAML | C# | Tutorial
- WPF UI/ Design a Modern Login Form/ Introducing to WPF
- C# WPF UI | How to Design Flat Data Table Dashboard in WPF (Customize Datagrid)
- 깊알못-WPF
- wpf로 PC카톡 만들기
MVVM
728x90
'C# > C# WPF 개념' 카테고리의 다른 글
[C# WPF] HelloWorld(XAML기반) -2 (0) | 2023.08.17 |
---|---|
[C# WPF] HelloWorld(XAML기반) -1 (0) | 2023.08.17 |
[C# WPF] 바인딩 #04 - 목록 기반의 컨트롤 바인딩 (0) | 2023.08.17 |
[C# WPF] 바인딩 #03 - UI와 데이터 간 바인딩, 속성 변경 이벤트 (0) | 2023.08.17 |
[C# WPF] 바인딩 #03 - 컨버터 확장 (0) | 2023.08.17 |