23 references to Setters
PresentationFramework (23)
System\Windows\Controls\DataGridCheckBoxColumn.cs (6)
46style.Setters.Add(new Setter(UIElement.IsHitTestVisibleProperty, false)); 47style.Setters.Add(new Setter(UIElement.FocusableProperty, false)); 48style.Setters.Add(new Setter(CheckBox.HorizontalAlignmentProperty, HorizontalAlignment.Center)); 49style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty, VerticalAlignment.Top)); 77style.Setters.Add(new Setter(CheckBox.HorizontalAlignmentProperty, HorizontalAlignment.Center)); 78style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty, VerticalAlignment.Top));
System\Windows\Controls\DataGridComboBoxColumn.cs (1)
231style.Setters.Add(new Setter(ComboBox.IsSynchronizedWithCurrentItemProperty, false));
System\Windows\Controls\DataGridTextColumn.cs (3)
42style.Setters.Add(new Setter(TextBlock.MarginProperty, new Thickness(2.0, 0.0, 2.0, 0.0))); 64style.Setters.Add(new Setter(TextBox.BorderThicknessProperty, new Thickness(0.0))); 65style.Setters.Add(new Setter(TextBox.PaddingProperty, new Thickness(0.0)));
System\Windows\Controls\Image.cs (1)
419style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.LeftToRight));
System\Windows\Controls\InkCanvas.cs (4)
109defaultStyle.Setters.Add(new Setter(InkCanvas.BackgroundProperty, 112defaultStyle.Setters.Add(new Setter(Stylus.IsFlicksEnabledProperty, false)); 114defaultStyle.Setters.Add(new Setter(Stylus.IsTapFeedbackEnabledProperty, false)); 116defaultStyle.Setters.Add(new Setter(Stylus.IsTouchFeedbackEnabledProperty, false));
System\Windows\Controls\MediaElement.cs (1)
110style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.LeftToRight));
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5763bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Style)target).Setters; };
System\Windows\Markup\KnownTypes.cs (1)
2528case KnownElements.Style: return (o as System.Windows.Style).Setters;
System\Windows\Style.cs (5)
420Setters.Add(sb); 639style.Setters.Seal(); // Does not mark individual setters as sealed, that's up to the loop below. 646PropertyValues = new FrugalStructList<System.Windows.PropertyValue>(style.Setters.Count); 650for (int i = 0; i < style.Setters.Count; i++) 652SetterBase setterBase = style.Setters[i];