18 references to MinHeightProperty
PresentationFramework (18)
System\Windows\Controls\InkCanvas.cs (1)
133setter.Property = MinHeightProperty;
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (5)
43MinHeightProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(OnNotifyHeightPropertyChanged, OnCoerceMinHeight)); 110DataGridHelper.TransferProperty(this, MinHeightProperty); 215MinHeightProperty, 415else if (e.Property == DataGrid.MinRowHeightProperty || e.Property == MinHeightProperty) 417DataGridHelper.TransferProperty(this, MinHeightProperty);
System\Windows\Controls\Primitives\PopupRoot.cs (1)
277_adornerDecorator.SetBinding(MinHeightProperty, binding);
System\Windows\Controls\TextBox.cs (5)
60MinHeightProperty.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback)); 1810ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1813this.ScrollViewer.ClearValue(MinHeightProperty); 1848ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1850RenderScope.ClearValue(MinHeightProperty);
System\Windows\Documents\TextSchema.cs (1)
1175FrameworkElement.MinHeightProperty,
System\Windows\FrameworkElement.cs (2)
3603get { return (double) GetValue(MinHeightProperty); } 3604set { SetValue(MinHeightProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2580DependencyProperty dp = System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Markup\KnownTypes.cs (1)
1784return System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Window.cs (1)
61MinHeightProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMinHeightChanged)));