<!--Toggle Switch-->
<ToggleSwitch x:Name="ToggleSwitch_1"
Header="ToggleSwitch"
Margin="10,9.5,6,0"
Grid.Row="3"
VerticalAlignment="Top"
Toggled="ToggleSwitch_1_Toggled"/>
<TextBlock x:Name="TS_TextBlock"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="10,9.5,0,0"
TextWrapping="Wrap"
Height="40"
Width="140"
FontSize="24"
Grid.Column="1"
Grid.Row="3"/>
Xử lý sự kiện:
private void ToggleSwitch_1_Toggled(object sender, RoutedEventArgs e)
{
if (ToggleSwitch_1.IsOn == true)
{
TS_TextBlock.Text = "This is On";
}
else
{
TS_TextBlock.Text = "This is Off";
}
}
Chúng cũng là kiểu logic như RadioButton.
Chạy ứng dụng, nó sẽ trông giống hệt như thế này.