DevZest WPF Docking
SplitContainerChild1MinSize Property |
Gets or sets the minimum distance, in device-independent units (1/96th inch per unit),
of the splitter from the left or top edge of SplitContainer.
This is a dependency property.
Namespace: DevZest.Windows
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
Property Value
Type: DoubleRepresenting the minimum distance, in device-independent units (1/96th inch per unit), of the splitter from the left or top edge of SplitContainer. The default value is 20, regardless of Orientation.
Remarks
Use the Child1MinSize property to prevent the splitter from moving too close to the left or top edge of the container. For example, you might want to prevent some of the display area of a TreeView from being covered.
If the Orientation property is Vertical (the default), Child1MinSize returns the minimum distance of the splitter from the top edge of SplitContainer. If the Orientation property is Horizontal, Child1MinSize returns the minimum distance of the splitter from the left edge of SplitContainer.
See Also