18 references to MinHeightProperty
PresentationFramework (18)
System\Windows\Controls\InkCanvas.cs (1)
128Property = 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)
276_adornerDecorator.SetBinding(MinHeightProperty, binding);
System\Windows\Controls\TextBox.cs (5)
53MinHeightProperty.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback)); 1805ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1808this.ScrollViewer.ClearValue(MinHeightProperty); 1843ReadLocalValue(MinHeightProperty) != DependencyProperty.UnsetValue) 1845RenderScope.ClearValue(MinHeightProperty);
System\Windows\Documents\TextSchema.cs (1)
1169FrameworkElement.MinHeightProperty,
System\Windows\FrameworkElement.cs (2)
3596get { return (double) GetValue(MinHeightProperty); } 3597set { SetValue(MinHeightProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2654DependencyProperty dp = System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Markup\KnownTypes.cs (1)
1778return System.Windows.FrameworkElement.MinHeightProperty;
System\Windows\Window.cs (1)
47MinHeightProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMinHeightChanged)));