■ CheckBox 엘리먼트의 IsThreeState/IsChecked 속성을 사용하는 방법을 보여준다.
▶ MainWindow.xaml
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 |
<?xml version="1.0" encoding="utf-8"?> <Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="TestProject"> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> <CheckBox Name="twoStateCheckBox" HorizontalAlignment="Center" Content="2단계 상태 체크 박스" /> <TextBlock Name="twoStateTextBlock" HorizontalAlignment="Center" Margin="0 10 0 0" /> <CheckBox Name="threeStateCheckBox" HorizontalAlignment="Center" Margin="0 10 0 0" IsThreeState="True" Content="3단계 상태 체크 박스" /> <TextBlock Name="threeStateTextBlock" HorizontalAlignment="Center" Margin="0 10 0 0" /> <StackPanel HorizontalAlignment="Center" Margin="0 10 0 0"> <CheckBox Name="selectAllCheckBox" IsThreeState="True" Content="모두 선택하기" /> <CheckBox Name="option1CheckBox" Margin="25 0 0 0" Content="옵션 1" /> <CheckBox Name="option2CheckBox" Margin="25 0 0 0" IsChecked="True" Content="옵션 2" /> <CheckBox Name="option3CheckBox" Margin="25 0 0 0" Content="옵션 3" /> </StackPanel> </StackPanel> </Window> |
▶ MainWindow.xaml.cs
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
using Microsoft.UI.Xaml; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public sealed partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); SetSelectAllCheckBoxValue(); this.twoStateTextBlock.Text = "박스 체크 해제"; this.threeStateTextBlock.Text = "박스 체크 해제"; this.twoStateCheckBox.Checked += twoStateCheckBox_Checked; this.twoStateCheckBox.Unchecked += twoStateCheckBox_Unchecked; this.threeStateCheckBox.Indeterminate += threeStateCheckBox_Indeterminate; this.threeStateCheckBox.Checked += threeStateCheckBox_Checked; this.threeStateCheckBox.Unchecked += threeStateCheckBox_Unchecked; this.selectAllCheckBox.Checked += selectAllCheckBox_Checked; this.selectAllCheckBox.Unchecked += selectAllCheckBox_Unchecked; this.selectAllCheckBox.Indeterminate += selectAllCheckBox_Indeterminate; this.option1CheckBox.Checked += optionCheckBox_Checked; this.option1CheckBox.Unchecked += optionCheckBox_Unchecked; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 2단계 상태 체크 박스 체크시 처리하기 - twoStateCheckBox_Checked(sender, e) /// <summary> /// 2단계 상태 체크 박스 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void twoStateCheckBox_Checked(object sender, RoutedEventArgs e) { this.twoStateTextBlock.Text = "박스 체크"; } #endregion #region 2단계 상태 체크 박스 체크 해제시 처리하기 - twoStateCheckBox_Unchecked(sender, e) /// <summary> /// 2단계 상태 체크 박스 체크 해제시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void twoStateCheckBox_Unchecked(object sender, RoutedEventArgs e) { this.twoStateTextBlock.Text = "박스 체크 해제"; } #endregion #region 3단계 상태 체크 박스 체크시 처리하기 - threeStateCheckBox_Checked(sender, e) /// <summary> /// 3단계 상태 체크 박스 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void threeStateCheckBox_Checked(object sender, RoutedEventArgs e) { this.threeStateTextBlock.Text = "박스 체크"; } #endregion #region 3단계 상태 체크 박스 체크시 처리하기 - threeStateCheckBox_Unchecked(sender, e) /// <summary> /// 3단계 상태 체크 박스 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void threeStateCheckBox_Unchecked(object sender, RoutedEventArgs e) { this.threeStateTextBlock.Text = "박스 체크 해제"; } #endregion #region 3단계 상태 체크 박스 미확정시 처리하기 - threeStateCheckBox_Indeterminate(sender, e) /// <summary> /// 3단계 상태 체크 박스 미확정시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void threeStateCheckBox_Indeterminate(object sender, RoutedEventArgs e) { this.threeStateTextBlock.Text = "박스 상태 미확정"; } #endregion #region 모두 선택하기 체크 박스 체크시 처리하기 - selectAllCheckBox_Checked(sender, e) /// <summary> /// 모두 선택하기 체크 박스 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void selectAllCheckBox_Checked(object sender, RoutedEventArgs e) { this.option1CheckBox.IsChecked = this.option2CheckBox.IsChecked = this.option3CheckBox.IsChecked = true; } #endregion #region 모두 선택하기 체크 박스 체크 해제시 처리하기 - selectAllCheckBox_Unchecked(sender, e) /// <summary> /// 모두 선택하기 체크 박스 체크 해제시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void selectAllCheckBox_Unchecked(object sender, RoutedEventArgs e) { this.option1CheckBox.IsChecked = this.option2CheckBox.IsChecked = this.option3CheckBox.IsChecked = false; } #endregion #region 모두 선택하기 체크 박스 미확정시 처리하기 - selectAllCheckBox_Indeterminate(sender, e) /// <summary> /// 모두 선택하기 체크 박스 미확정시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void selectAllCheckBox_Indeterminate(object sender, RoutedEventArgs e) { if ( this.option1CheckBox.IsChecked == true && this.option2CheckBox.IsChecked == true && this.option3CheckBox.IsChecked == true ) { this.selectAllCheckBox.IsChecked = false; } } #endregion #region 옵션 체크 박스 체크시 처리하기 - optionCheckBox_Checked(sender, e) /// <summary> /// 옵션 체크 박스 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void optionCheckBox_Checked(object sender, RoutedEventArgs e) { SetSelectAllCheckBoxValue(); } #endregion #region 옵션 체크 박스 체크 해제시 처리하기 - optionCheckBox_Unchecked(sender, e) /// <summary> /// 옵션 체크 박스 체크 해제시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void optionCheckBox_Unchecked(object sender, RoutedEventArgs e) { SetSelectAllCheckBoxValue(); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 모두 선택하기 체크 박스 값 설정하기 - SetSelectAllCheckBoxValue() /// <summary> /// 모두 선택하기 체크 박스 값 설정하기 /// </summary> private void SetSelectAllCheckBoxValue() { if(this.option1CheckBox != null) { if(this.option1CheckBox.IsChecked == true && this.option2CheckBox.IsChecked == true && this.option3CheckBox.IsChecked == true) { this.selectAllCheckBox.IsChecked = true; } else if(this.option1CheckBox.IsChecked == false && this.option2CheckBox.IsChecked == false && this.option3CheckBox.IsChecked == false) { this.selectAllCheckBox.IsChecked = false; } else { this.selectAllCheckBox.IsChecked = null; } } } #endregion } } |