■ RadioButtons 엘리먼트의 MaxColumns/Header 속성을 사용하는 방법을 보여준다.
▶ 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 |
<?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"> <RadioButtons Name="backgroundColorRadioButtons" MaxColumns="3" Header="Background"> <x:String>Green</x:String> <x:String>Yellow</x:String> <x:String>White</x:String> </RadioButtons> <RadioButtons Name="borderColorRadioButtons" Margin="0 10 0 0" MaxColumns="3" Header="Border"> <x:String>Green</x:String> <x:String>Yellow</x:String> <x:String>White</x:String> </RadioButtons> <Border Name="border" Margin="0 10 0 0" Height="50" BorderThickness="10" BorderBrush="#ffffd700" Background="#ffffffff" /> </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 |
using Microsoft.UI; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Media; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public sealed partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.backgroundColorRadioButtons.SelectionChanged += backgroundColorRadioButtons_SelectionChanged; this.borderColorRadioButtons.SelectionChanged += borderColorRadioButtons_SelectionChanged; this.backgroundColorRadioButtons.SelectedIndex = 0; this.borderColorRadioButtons.SelectedIndex = 1; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 배경색 라디오 버튼 리스트 선택 변경시 처리하기 - backgroundColorRadioButtons_SelectionChanged(sender, e) /// <summary> /// 배경색 라디오 버튼 리스트 선택 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void backgroundColorRadioButtons_SelectionChanged(object sender, SelectionChangedEventArgs e) { if(this.border != null && sender is RadioButtons radioButtons) { string colorName = radioButtons.SelectedItem as string; switch(colorName) { case "Yellow" : this.border.Background = new SolidColorBrush(Colors.Yellow); break; case "Green" : this.border.Background = new SolidColorBrush(Colors.Green ); break; case "White" : this.border.Background = new SolidColorBrush(Colors.White ); break; } } } #endregion #region 테두리 색상 라디오 버튼 리스트 선택 변경시 처리하기 - borderColorRadioButtons_SelectionChanged(sender, e) /// <summary> /// 테두리 색상 라디오 버튼 리스트 선택 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void borderColorRadioButtons_SelectionChanged(object sender, SelectionChangedEventArgs e) { if(this.border != null && sender is RadioButtons radioButtons) { string colorName = radioButtons.SelectedItem as string; switch(colorName) { case "Yellow" : this.border.BorderBrush = new SolidColorBrush(Colors.Gold ); break; case "Green" : this.border.BorderBrush = new SolidColorBrush(Colors.DarkGreen); break; case "White" : this.border.BorderBrush = new SolidColorBrush(Colors.White ); break; } } } #endregion } } |