Base:
property
IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation.Options.AbstractCheckBoxViewModel.IsChecked
4 writes to IsChecked
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (3)
Options\OptionViewModelTests.cs (3)
65checkbox.IsChecked = !checkbox.IsChecked; 70checkbox.IsChecked = !checkbox.IsChecked; 98checkbox.IsChecked = !checkbox.IsChecked;
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\OptionPreviewControl.xaml.cs (1)
70checkBox.IsChecked = !checkBox.IsChecked;
8 references to IsChecked
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (6)
Options\OptionViewModelTests.cs (6)
60viewModel.SetOptionAndUpdatePreview(checkbox.IsChecked, checkbox.Option, checkbox.GetPreview()); 65checkbox.IsChecked = !checkbox.IsChecked; 70checkbox.IsChecked = !checkbox.IsChecked; 85Assert.True(checkbox.IsChecked); 97var initial = checkbox.IsChecked; 98checkbox.IsChecked = !checkbox.IsChecked;
Microsoft.VisualStudio.LanguageServices.Implementation (2)
Options\OptionPreviewControl.xaml.cs (2)
70checkBox.IsChecked = !checkBox.IsChecked; 88this.ViewModel.SetOptionAndUpdatePreview(firstItem.IsChecked, firstItem.Option, firstItem.GetPreview());