Two Lines in a StackPanel : Line « Windows Presentation Foundation « VB.Net






Two Lines in a StackPanel

Two Lines in a StackPanel
       

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Stretch" VerticalAlignment="Stretch">

    <StackPanel Orientation="Vertical">
      <TextBlock Background="Red">A</TextBlock>
      <Line Stroke="Green" X1="20" Y1="10" X2="100" Y2="40" />
      <TextBlock Background="LightGray">B</TextBlock>
      <Line Stroke="Green" X1="0" Y1="10" X2="100" Y2="0" />
    </StackPanel>

</Page>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Line position and color and thicknessLine position and color and thickness
2.Draw a LineDraw a Line
3.Add Line to StackPanelAdd Line to StackPanel
4.Set line Stroke and StrokeThicknessSet line Stroke and StrokeThickness
5.Add Line and TextBlock to CanvasAdd Line and TextBlock to Canvas
6.Set Line Along Canvas Top and LeftSet Line Along Canvas Top and Left
7.Draws a diagonal line from (10,10) to (40,50)Draws a diagonal line from (10,10) to (40,50)
8.Create a simple line using the LineSegment and PathGeometryCreate a simple line using the LineSegment and PathGeometry
9.Creates a blue line from point (30, 30) to point (180, 30):Creates a blue line from point (30, 30) to point (180, 30):
10.Creating LinesCreating Lines