AppWatchUITest.Toy.SwitchView.UnselectAll C# (CSharp) Method

UnselectAll() public method

public UnselectAll ( ) : void
return void
        public void UnselectAll()
        {
            foreach (var item in this.Items)
            {
                if (item is SwitchViewItem)
                {
                    (item as SwitchViewItem).IsSelected = false;
                }
            }
        }
    }