16 references to MarginProperty
PresentationFramework (16)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
41MarginProperty.OverrideMetadata(typeof(TextBoxView), new FrameworkPropertyMetadata(new Thickness(CaretElement.BidiCaretIndicatorWidth, 0, CaretElement.BidiCaretIndicatorWidth, 0)));
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (1)
43style.Setters.Add(new Setter(TextBlock.MarginProperty, new Thickness(2.0, 0.0, 2.0, 0.0)));
src\Framework\System\Windows\Controls\Primitives\TabPanel.cs (2)
211Thickness margin = (Thickness)element.GetValue(MarginProperty); 265Thickness margin = (Thickness)child.GetValue(MarginProperty);
src\Framework\System\Windows\Controls\ProgressBar.cs (2)
266_glow.BeginAnimation(FrameworkElement.MarginProperty, animation); 270_glow.BeginAnimation(FrameworkElement.MarginProperty, null);
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2752content.SetValue(ContentPresenter.MarginProperty, new TemplateBindingExtension(PaddingProperty));
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (4)
328Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 339Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 350Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty); 361Thickness margin = (Thickness)tp.GetValue(FrameworkElement.MarginProperty);
src\Framework\System\Windows\Documents\TextSchema.cs (1)
1180FrameworkElement.MarginProperty,
src\Framework\System\Windows\FrameworkElement.cs (2)
3749get { return (Thickness) GetValue(MarginProperty); } 3750set { SetValue(MarginProperty, value); }
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2521DependencyProperty dp = System.Windows.FrameworkElement.MarginProperty;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1779return System.Windows.FrameworkElement.MarginProperty;