1 <Application x:Class="create_cube.app"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 Startup="AppStartingUp"
6 <Application.Resources>
8 <SolidColorBrush x:Key="blueBrush" Color="Blue" Opacity="1.0" />
9 <SolidColorBrush x:Key="orangeBrush" Color="Orange" Opacity="1.0" />
10 <SolidColorBrush x:Key="yellowBrush" Color="Yellow" Opacity="1.0" />
11 <SolidColorBrush x:Key="redBrush" Color="Red" Opacity="1.0" />
12 <SolidColorBrush x:Key="purpleBrush" Color="Purple" Opacity="1.0" />
13 <SolidColorBrush x:Key="cyanBrush" Color="Cyan" Opacity="1.0" />
15 <DrawingBrush x:Key="patternBrush" Viewport="0,0,0.1,0.1" TileMode="Tile">
16 <DrawingBrush.Drawing>
18 <DrawingGroup.Children>
19 <GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z"
21 <GeometryDrawing Geometry="M0.9,0 L1,0.1 0.1,1 0,0.9z"
23 <GeometryDrawing Geometry="M0.25,0.25 L0.5,0.125 0.75,0.25 0.5,0.5z"
25 <GeometryDrawing Geometry="M0.25,0.75 L0.5,0.875 0.75,0.75 0.5,0.5z"
27 <GeometryDrawing Geometry="M0.25,0.75 L0.125,0.5 0.25,0.25 0.5,0.5z"
29 <GeometryDrawing Geometry="M0.75,0.25 L0.875,0.5 0.75,0.75 0.5,0.5z"
31 </DrawingGroup.Children>
33 </DrawingBrush.Drawing>
36 <LinearGradientBrush x:Key="gradientBrush" SpreadMethod="Repeat">
37 <LinearGradientBrush.GradientStops>
38 <GradientStop Color="Green" Offset="0" />
39 <GradientStop Color="Blue" Offset="1" />
40 </LinearGradientBrush.GradientStops>
41 </LinearGradientBrush>
43 </Application.Resources>