16 references to MarginProperty
PresentationFramework (16)
MS\Internal\Documents\TextBoxView.cs (1)
39MarginProperty.OverrideMetadata(typeof(TextBoxView), new FrameworkPropertyMetadata(new Thickness(CaretElement.BidiCaretIndicatorWidth, 0, CaretElement.BidiCaretIndicatorWidth, 0)));
System\Windows\Controls\DataGridTextColumn.cs (1)
42style.Setters.Add(new Setter(TextBlock.MarginProperty, new Thickness(2.0, 0.0, 2.0, 0.0)));
System\Windows\Controls\Primitives\TabPanel.cs (2)
210Thickness margin = (Thickness)element.GetValue(MarginProperty); 264Thickness margin = (Thickness)child.GetValue(MarginProperty);
System\Windows\Controls\ProgressBar.cs (2)
266_glow.BeginAnimation(FrameworkElement.MarginProperty, animation); 270_glow.BeginAnimation(FrameworkElement.MarginProperty, null);
System\Windows\Controls\ScrollViewer.cs (1)
2712content.SetValue(ContentPresenter.MarginProperty, new TemplateBindingExtension(PaddingProperty));
System\Windows\Controls\TextRangeAdaptor.cs (4)
320Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 331Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 342Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 353Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty);
System\Windows\Documents\TextSchema.cs (1)
1178FrameworkElement.MarginProperty,
System\Windows\FrameworkElement.cs (2)
3743get { return (Thickness) GetValue(MarginProperty); } 3744set { SetValue(MarginProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2529DependencyProperty dp = System.Windows.FrameworkElement.MarginProperty;
System\Windows\Markup\KnownTypes.cs (1)
1778return System.Windows.FrameworkElement.MarginProperty;