Toggle Switch Control For Windows 10

Introduction

 
Toggle Switch represents a switch that can be toggled between two states. We can use a Toggle Switch control to let the user switch an option between on and off states. We use the Ison property to determine the state of the switch. Handle the Toggled event to respond to changes in the state.
 
Step 1
 
Open a blank app and add a ToggleSwitch control either from the toolbox or by copying the following XAML code into your grid.
  1. <TextBlock Text="Toggle Switch" FontSize="20"></TextBlock>    
  2. <StackPanel Margin="10,40,0,0">    
  3.     <StackPanel Orientation="Horizontal">    
  4.         <ToggleSwitch Name="myToggleSwitch" Header="Toggle Switch" OffContent="OFF" OnContent="ON" Toggled="myToggleSwitch_Toggled" />    
  5.         <ProgressRing Name="myRing" Height="40" Width="40" /> </StackPanel>    
  6. </StackPanel>     
Here we have added a ToggleSwitch and a ProgressRing. By toggling the switch we are controlling the IsActive property of the Progress Ring.
 
  
 
Step 2
 
Copy and paste the following code to the cs page to handle the events generated on Toggling:
  1. private void myToggleSwitch_Toggled(object sender, RoutedEventArgs e)    
  2. {    
  3.     if (myToggleSwitch.IsOn)    
  4.     {    
  5.         myRing.IsActive = true;    
  6.     }    
  7.     else    
  8.     {    
  9.         myRing.IsActive = false;    
  10.     }    
  11. }     
Step 3
 
Run your application and test yourself.
 
 

Summary 

 
In this article, we learned about Toggle Switch Control For Windows 10.  


Similar Articles