Add Line and TextBlock to Canvas : Line « Windows Presentation Foundation « VB.Net






Add Line and TextBlock to Canvas

Add Line and TextBlock to Canvas
     

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="250" Width="500">
    <StackPanel Orientation="Horizontal">
        <Canvas Margin="5">
            <TextBlock FontSize="14" Text="Lines in a Canvas:"/>
            <Line X1="50" Y1="200" X2="230" Y2="20" Stroke="Black" StrokeThickness="8"/>
        </Canvas>
    </StackPanel>
</Window>

   
    
    
    
    
  








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.Set Line Along Canvas Top and LeftSet Line Along Canvas Top and Left
6.Draws a diagonal line from (10,10) to (40,50)Draws a diagonal line from (10,10) to (40,50)
7.Two Lines in a StackPanelTwo Lines in a StackPanel
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