Hi:
the problem with ToggleSwitch, when I activate the ToggleSwitch does not do shape recognition but when I put it off it does shape recognitionlink text
private async void RecoShape_Toggled(object sender, RoutedEventArgs e)
{
var toggleSwitch = sender as ToggleSwitch;
if(toggleSwitch != null)
{
IF(tggleswitch.IsOn == true)
{
recognitionCanvas.visibility = visibility.Visible;
}
}
}