@ -0,0 +1,31 @@
|
|||||||
|
<UserControl x:Class="SmartAquaViewer.Controls.SegmentedControl"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:SmartAquaViewer.Controls"
|
||||||
|
xmlns:helper="clr-namespace:SmartAquaViewer.Helper"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Grid>
|
||||||
|
<Grid>
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<RadioButton Name="rdbtnA" Content="수조" GroupName="SignalType" Tag="Tank"
|
||||||
|
Checked="RadioButton_Checked"
|
||||||
|
Style="{StaticResource ImageRadioButtonStyle}" Width="250" Height="50" IsChecked="True"
|
||||||
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/SegmentedControl/select_btn_1.png"
|
||||||
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/SegmentedControl/select_btn_1_press.png"/>
|
||||||
|
<RadioButton Name="rdbtnB" Content="여과시스템" GroupName="SignalType" Tag="Filter"
|
||||||
|
Checked="RadioButton_Checked"
|
||||||
|
Style="{StaticResource ImageRadioButtonStyle}" Width="250" Height="50"
|
||||||
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/SegmentedControl/select_btn_2.png"
|
||||||
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/SegmentedControl/select_btn_2_press.png"/>
|
||||||
|
<RadioButton Name="rdbtnC" Content="살균시스템" GroupName="SignalType" Tag="Sterilizer"
|
||||||
|
Checked="RadioButton_Checked"
|
||||||
|
Style="{StaticResource ImageRadioButtonStyle}" Width="250" Height="50"
|
||||||
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/SegmentedControl/select_btn_4.png"
|
||||||
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/SegmentedControl/select_btn_4_press.png"/>
|
||||||
|
</StackPanel>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 13 KiB |