LayoutInformation Class
Defines methods that provide additional information about the layout state of an element.
Assembly: PresentationFramework (in PresentationFramework.dll)
The following example demonstrates how to use the GetLayoutSlot method to translate the bounding box of a FrameworkElement into a GeometryDrawing.
private void getLayoutSlot1(object sender, System.Windows.RoutedEventArgs e) { RectangleGeometry myRectangleGeometry = new RectangleGeometry(); myRectangleGeometry.Rect = LayoutInformation.GetLayoutSlot(txt1); GeometryDrawing myGeometryDrawing = new GeometryDrawing(); Path myPath = new Path(); myPath.Data = myRectangleGeometry; myPath.Stroke = Brushes.LightGoldenrodYellow; myPath.StrokeThickness = 5; Grid.SetColumn(myPath, 0); Grid.SetRow(myPath, 0); myGrid.Children.Add(myPath); txt2.Text = "LayoutSlot is equal to " + LayoutInformation.GetLayoutSlot(txt1).ToString(); }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.