Mega Code Archive

 
Categories / VB.Net / WPF
 

Paints a rectangle with a checkered pattern 2

<Window x:Class="Workspace.DockExample"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="Workspace" Width="640" Height="480">       <Rectangle Width="150" Height="150">         <Rectangle.Fill>           <VisualBrush TileMode="Tile">             <VisualBrush.Visual>               <StackPanel>                 <StackPanel.Background>                   <DrawingBrush>                     <DrawingBrush.Drawing>                       <GeometryDrawing>                         <GeometryDrawing.Brush>                           <RadialGradientBrush>                             <GradientStop Color="MediumBlue" Offset="0.0" />                             <GradientStop Color="White" Offset="1.0" />                           </RadialGradientBrush>                         </GeometryDrawing.Brush>                         <GeometryDrawing.Geometry>                           <GeometryGroup>                             <RectangleGeometry Rect="0,0,0.5,0.5" />                             <RectangleGeometry Rect="0.5,0.5,0.5,0.5" />                           </GeometryGroup>                         </GeometryDrawing.Geometry>                       </GeometryDrawing>                     </DrawingBrush.Drawing>                   </DrawingBrush>                 </StackPanel.Background>                 <TextBlock FontSize="10pt" Margin="10">Hello, World!</TextBlock>               </StackPanel>             </VisualBrush.Visual>           </VisualBrush>         </Rectangle.Fill>       </Rectangle> </Window>