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