UIElement Measure and Arrange Method from metadata description
reference/VS metadata 2017. 12. 12. 20:34
UIElement description from metadata
public class UIElement : DependencyObject, IUIElement, IUIElementOverrides, IUIElement2, IUIElement3, IUIElement4, IUIElement5
{
//
// Summary:
// Updates the Windows.UI.Xaml.UIElement.DesiredSize of a Windows.UI.Xaml.UIElement.
// Typically, objects that implement custom layout for their layout children call
// this method from their own Windows.UI.Xaml.FrameworkElement.MeasureOverride(Windows.Foundation.Size)
// implementations to form a recursive layout update.
//
// Parameters:
// availableSize:
// The available space that a parent can allocate to a child object. A child object
// can request a larger space than what is available; the provided size might be
// accommodated if scrolling or other resize behavior is possible in that particular
// container.
public void Measure(Size availableSize);
//
// Summary:
// Positions child objects and determines a size for a Windows.UI.Xaml.UIElement.
// Parent objects that implement custom layout for their child elements should call
// this method from their layout override implementations to form a recursive layout
// update.
//
// Parameters:
// finalRect:
// The final size that the parent computes for the child in layout, provided as
// a Windows.Foundation.Rect value.
public void Arrange(Rect finalRect);
이하 생략
'reference > VS metadata' 카테고리의 다른 글
DependencyObject (0) | 2018.01.02 |
---|---|
CultureInfo description from metadata (0) | 2017.12.29 |
DependencyObject description from metadata (0) | 2017.12.13 |
FrameworkElement MeasureOverride and ArrangeOverride Method from metadata description (0) | 2017.12.13 |