How to upgrade a batch application from vs2013 to vs2015?
I want to know how can we upgrade a batch application from vs2013 to vs2015. Please let me know If you already worked on this upgrading project/ have knowledge on this. Thanks in advance<br />
Answers (2)
1
<ToggleButton Height="100" Width="200" IsChecked="False" Checked="ToggleButton_Checked" Unchecked="ToggleButton_Unchecked" ></ToggleButton>
Hi just set the visibility of the grid visible and Collapsed(by default set Collapsed)
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Visibility="Collapsed">
when you checked the toggle button set your g1 grid visibility to visible and g2 hide it vice versa
Accepted