18 references to MinHeightProperty
PresentationFramework (18)
System\Windows\Controls\InkCanvas.cs (1)
127Property = MinHeightProperty,
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (5)
37MinHeightProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(OnNotifyHeightPropertyChanged, OnCoerceMinHeight)); 104DataGridHelper.TransferProperty(this, MinHeightProperty); 209MinHeightProperty, 406else if (e.Property == DataGrid.MinRowHeightProperty || e.Property == MinHeightProperty) 408DataGridHelper.TransferProperty(this, MinHeightProperty);
System\Windows\Controls\Primitives\PopupRoot.cs (1)
275_adornerDecorator.SetBinding(MinHeightProperty, binding);
System\Windows\Controls\TextBox.cs (5)
52MinHeightProperty.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback)); 1804ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1807this.ScrollViewer.ClearValue(MinHeightProperty); 1842ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1844RenderScope.ClearValue(MinHeightProperty);
System\Windows\Documents\TextSchema.cs (1)
1168FrameworkElement.MinHeightProperty,
System\Windows\FrameworkElement.cs (2)
3589get { return (double) GetValue(MinHeightProperty); } 3590set { SetValue(MinHeightProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2653DependencyProperty dp = System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Markup\KnownTypes.cs (1)
1777return System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Window.cs (1)
46MinHeightProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMinHeightChanged)));