Partilhar via


Como: Embrulhar uma Borda em Torno do Conteúdo de uma Tela

This example shows how to wrap a Canvas element with a Border.

Exemplo

The following example shows how to display Hello World! inside a Canvas element. The Canvas element is wrapped by a Border element so that a border outlines the element.

<Page xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation">
  <Border
    BorderThickness="2"
    BorderBrush="Black"
    Background="LightGray"
    HorizontalAlignment="Left"
    VerticalAlignment="Top"
    Width="100"
    Height="100">
    <Canvas>
      <TextBlock Canvas.Top="10" Canvas.Left="20">Hello World!</TextBlock>
    </Canvas>
  </Border>
</Page>    

Consulte também

Referência

Canvas

Border

Conceitos

Panels Overview