1 type derived from RadioButton
System.Windows.Controls.Ribbon (1)
2 instantiations of RadioButton
PresentationFramework (2)
79 references to RadioButton
Microsoft.VisualStudio.LanguageServices (26)
Microsoft.VisualStudio.LanguageServices.CSharp (16)
Microsoft.VisualStudio.LanguageServices.Implementation (11)
Options\AbstractOptionPageControl.cs (10)
57var radioButtonStyle = new System.Windows.Style(typeof(RadioButton));
58radioButtonStyle.Setters.Add(new Setter(RadioButton.MarginProperty, new Thickness() { Bottom = 7 }));
59radioButtonStyle.Setters.Add(new Setter(RadioButton.ForegroundProperty, new DynamicResourceExtension(SystemColors.WindowTextBrushKey)));
60Resources.Add(typeof(RadioButton), radioButtonStyle);
194private protected void BindToOption<T>(RadioButton radiobutton, Option2<T> optionKey, T optionValue)
207var bindingExpression = radiobutton.SetBinding(RadioButton.IsCheckedProperty, binding);
211private protected void BindToOption<T>(RadioButton radioButton, Option2<T?> nullableOptionKey, T optionValue, Func<bool> onNullValue) where T : struct
224var bindingExpression = radioButton.SetBinding(RadioButton.IsCheckedProperty, binding);
228private protected void BindToOption<T>(RadioButton radiobutton, PerLanguageOption2<T> optionKey, T optionValue, string languageName)
241var bindingExpression = radiobutton.SetBinding(RadioButton.IsCheckedProperty, binding);
PresentationFramework (26)