Align Button along with Canvas position : Canvas « Windows Presentation Foundation « VB.Net






Align Button along with Canvas position

Align Button along with Canvas position
      
<Window x:Class="WpfApplication1.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Canvas" Height="244" Width="242">
    <Canvas>
        <Button Canvas.Left="119" Canvas.Top="24" Name="button1" Width="70" Height="23" >Button</Button>
        <Button Canvas.Left="44" Canvas.Top="69" Name="button2">Button2 is quite wide</Button>
        <Button Canvas.Left="78" Canvas.Top="119" Name="button3" Padding="10 2" >Button</Button>
    </Canvas>
</Window>

   
    
    
    
    
    
  








Related examples in the same category

1.Using a Canvas to absolutely position elementsUsing a Canvas to absolutely position elements
2.Simple CanvasSimple Canvas
3.StackPanel Demo and CanvasStackPanel Demo and Canvas
4.Canvas with MinHeight and MinWidthCanvas with MinHeight and MinWidth
5.Draws a Path element within a CanvasDraws a Path element within a Canvas
6.Draws several Line elements within a CanvasDraws several Line elements within a Canvas
7.Draws several Polyline elements within a CanvasDraws several Polyline elements within a Canvas
8.Rectangle with Fill and Canvas positionRectangle with Fill and Canvas position
9.Custom Coordinates by transforming the CanvasCustom Coordinates by transforming the Canvas
10.Draw path on a CanvasDraw path on a Canvas
11.Use Canvas coordinationUse Canvas coordination
12.Use Canvas to layout Buttons and LabelsUse Canvas to layout Buttons and Labels
13.Position UI Elements Using Exact CoordinatesPosition UI Elements Using Exact Coordinates
14.Pixel SnappedPixel Snapped
15.Positioning Rectangle on a CanvasPositioning Rectangle on a Canvas
16.Canvas inside canvas, showing relative absolute positioningCanvas inside canvas, showing relative absolute positioning
17.Aligning elements using multiple attached properties of CanvasAligning elements using multiple attached properties of Canvas
18.Layer elements in a Canvas elementLayer elements in a Canvas element
19.Use the four attached properties of the Canvas element: Bottom, Left, Right, and TopUse the four attached properties of the Canvas element: Bottom, Left, Right, and Top
20.Canvas PreviewMouseDown action and MouseDown actionCanvas PreviewMouseDown action and MouseDown action
21.Handles the MouseDown event on the CanvasHandles the MouseDown event on the Canvas
22.StatusBar inside a CanvasStatusBar inside a Canvas
23.Drag Items from a List and Drop Them on a CanvasDrag Items from a List and Drop Them on a Canvas
24.Print Visual(Canvas)Print Visual(Canvas)
25.Get position on a Canvas with Canvas.GetLeftGet position on a Canvas with Canvas.GetLeft
26.Use a Thumb to resize a Canvas control by responding to the DragDelta event.Use a Thumb to resize a Canvas control by responding to the DragDelta event.
27.Canvas Positioning Properties SampleCanvas Positioning Properties Sample
28.Canvas.SetTopCanvas.SetTop
29.Canvas.SetBottomCanvas.SetBottom
30.Canvas.SetRightCanvas.SetRight
31.Add buttons to a Canvas with codeAdd buttons to a Canvas with code
32.Set control position for CanvasSet control position for Canvas