1 write to Setters
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\MarginGlyph\InheritanceMarginGlyph.cs (1)
67Setters =
27 references to Setters
Microsoft.VisualStudio.LanguageServices (3)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\InheritanceMargin\MarginGlyph\InheritanceMarginContextMenu.g.cs (3)
109((System.Windows.Style)(target)).Setters.Add(eventSetter); 120((System.Windows.Style)(target)).Setters.Add(eventSetter); 131((System.Windows.Style)(target)).Setters.Add(eventSetter);
PresentationFramework (23)
System\Windows\Controls\DataGridCheckBoxColumn.cs (6)
41style.Setters.Add(new Setter(UIElement.IsHitTestVisibleProperty, false)); 42style.Setters.Add(new Setter(UIElement.FocusableProperty, false)); 43style.Setters.Add(new Setter(CheckBox.HorizontalAlignmentProperty, HorizontalAlignment.Center)); 44style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty, VerticalAlignment.Top)); 72style.Setters.Add(new Setter(CheckBox.HorizontalAlignmentProperty, HorizontalAlignment.Center)); 73style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty, VerticalAlignment.Top));
System\Windows\Controls\DataGridComboBoxColumn.cs (1)
226style.Setters.Add(new Setter(ComboBox.IsSynchronizedWithCurrentItemProperty, false));
System\Windows\Controls\DataGridTextColumn.cs (3)
38style.Setters.Add(new Setter(TextBlock.MarginProperty, new Thickness(2.0, 0.0, 2.0, 0.0))); 60style.Setters.Add(new Setter(TextBox.BorderThicknessProperty, new Thickness(0.0))); 61style.Setters.Add(new Setter(TextBox.PaddingProperty, new Thickness(0.0)));
System\Windows\Controls\Image.cs (1)
410style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.LeftToRight));
System\Windows\Controls\InkCanvas.cs (4)
96defaultStyle.Setters.Add(new Setter(InkCanvas.BackgroundProperty, 99defaultStyle.Setters.Add(new Setter(Stylus.IsFlicksEnabledProperty, false)); 101defaultStyle.Setters.Add(new Setter(Stylus.IsTapFeedbackEnabledProperty, false)); 103defaultStyle.Setters.Add(new Setter(Stylus.IsTouchFeedbackEnabledProperty, false));
System\Windows\Controls\MediaElement.cs (1)
102style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.LeftToRight));
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6157GetDelegate = delegate (object target) { return ((System.Windows.Style)target).Setters; },
System\Windows\Markup\KnownTypes.cs (1)
2521case KnownElements.Style: return (o as System.Windows.Style).Setters;
System\Windows\Style.cs (5)
400Setters.Add(sb); 612style.Setters.Seal(); // Does not mark individual setters as sealed, that's up to the loop below. 619PropertyValues = new FrugalStructList<System.Windows.PropertyValue>(style.Setters.Count); 623for (int i = 0; i < style.Setters.Count; i++) 625SetterBase setterBase = style.Setters[i];
PresentationFramework.Tests (1)
System\Windows\ResourceDictionaryTests.cs (1)
52style.Setters.Should().NotBeEmpty();