Set Canvas background to White : Canvas « Containers « Silverlight






Set Canvas background to White

Set Canvas background to White
    

<UserControl x:Class='SilverlightApplication3.MainPage'
    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' 
    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
    xmlns:d='http://schemas.microsoft.com/expression/blend/2008' 
    xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' 
    mc:Ignorable='d' 
    d:DesignWidth='640' 
    d:DesignHeight='480'>
    
    <Canvas x:Name="LayoutRoot" Background="White">
        <Rectangle Canvas.Left="160"
             Canvas.Top="70"
             Width="100"
             Height="30"
             Fill="Blue" />
    </Canvas>
    
</UserControl>

   
    
    
    
  








Related examples in the same category

1.Positioning UI Elements with a CanvasPositioning UI Elements with a Canvas
2.A Simple Canvas Control and Three Image ControlsA Simple Canvas Control and Three Image Controls
3.Use tag rather than attribute to set canvas background
4.Add button to CanvasAdd button to Canvas
5.The Canvas.ZIndex is based on a number starting with 0 being the farthest backThe Canvas.ZIndex is based on a number starting with 0 being the farthest back
6.Create Canvas controls that contain other controls and even nest them in other Canvas or Grid controls.Create Canvas controls that contain other controls and even nest them in other Canvas or Grid controls.
7.Nested Canvas Objects
8.To draw a rectangle, specify its Canvas.Top, Canvas.Left, Width, Height, and Fill colorTo draw a rectangle, specify its Canvas.Top, Canvas.Left, Width, Height, and Fill color
9.A basic Canvas elementA basic Canvas element
10.A basic Canvas with some content.A basic Canvas with some content.
11.Simple Canvas Layout
12.Set control position for Canvas
13.Get position on a Canvas with Canvas.GetLeft
14.Canvas dependantCanvas dependant
15.Canvas without Viewbox
16.Adding Rectangles to CanvasAdding Rectangles to Canvas
17.Put text on CanvasPut text on Canvas
18.Put control into a CanvasPut control into a Canvas
19.Canvas loaded eventCanvas loaded event
20.Add Thickness for Padding