18 references to MinHeightProperty
PresentationFramework (18)
System\Windows\Controls\InkCanvas.cs (1)
121setter.Property = MinHeightProperty;
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (5)
38MinHeightProperty.OverrideMetadata(typeof(DataGridCellsPresenter), new FrameworkPropertyMetadata(OnNotifyHeightPropertyChanged, OnCoerceMinHeight)); 105DataGridHelper.TransferProperty(this, MinHeightProperty); 210MinHeightProperty, 410else if (e.Property == DataGrid.MinRowHeightProperty || e.Property == MinHeightProperty) 412DataGridHelper.TransferProperty(this, MinHeightProperty);
System\Windows\Controls\Primitives\PopupRoot.cs (1)
268_adornerDecorator.SetBinding(MinHeightProperty, binding);
System\Windows\Controls\TextBox.cs (5)
53MinHeightProperty.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback)); 1803ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1806this.ScrollViewer.ClearValue(MinHeightProperty); 1841ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1843RenderScope.ClearValue(MinHeightProperty);
System\Windows\Documents\TextSchema.cs (1)
1174FrameworkElement.MinHeightProperty,
System\Windows\FrameworkElement.cs (2)
3599get { return (double) GetValue(MinHeightProperty); } 3600set { SetValue(MinHeightProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2578DependencyProperty dp = System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Markup\KnownTypes.cs (1)
1784return System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Window.cs (1)
52MinHeightProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMinHeightChanged)));