Live Chat Icon For mobile
Live Chat Icon

WPF FAQ - Canvas

Find answers for the most frequently asked questions
Expand All Collapse All

This example shows how to use the attached properties of Canvas to position child elements.

[XAML]

<Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' WindowTitle='Canvas Attached Properties Sample'>
  <Border HorizontalAlignment='Left' VerticalAlignment='Top' BorderBrush='Black' BorderThickness='2'>
    <Canvas Background='LightBlue' Width='400' Height='400'>
      <Button Canvas.Top='50'>Canvas.Top='50'</Button>
      <Button Canvas.Bottom='50'>Canvas.Bottom='50'</Button>
      <Button Canvas.Left='50'>Canvas.Left='50'</Button>
      <Button Canvas.Right='50'>Canvas.Right='50'</Button>
    </Canvas>
  </Border>    
</Page>

Permalink

Share with

Couldn't find the FAQs you're looking for?

Please submit your question and answer.