Window.ArrangeOverride(Size) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Override this method to arrange and size a window and its child elements.
protected:
override System::Windows::Size ArrangeOverride(System::Windows::Size arrangeBounds);
protected override System.Windows.Size ArrangeOverride (System.Windows.Size arrangeBounds);
override this.ArrangeOverride : System.Windows.Size -> System.Windows.Size
Protected Overrides Function ArrangeOverride (arrangeBounds As Size) As Size
Parameters
- arrangeBounds
- Size
A Size that reflects the final size that the window should use to arrange itself and its children.
Returns
A Size that reflects the actual size that was used.
Remarks
ArrangeOverride is not called when the Visibility property has a value of Collapsed. If the value of the Visibility property is either Hidden or Visible, ArrangeOverride is called.
Note
When either Show or ShowDialog are called, the Visibility property of a Window is set to Visible.