42 lines
3.0 KiB
XML
42 lines
3.0 KiB
XML
<Window x:Class="RazorEngineTest.MainWindow"
|
|
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"
|
|
xmlns:local="clr-namespace:RazorEngineTest"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="500" Width="800">
|
|
<Grid>
|
|
<Border BorderBrush="Green" BorderThickness="2" VerticalAlignment="Top" HorizontalAlignment="Left">
|
|
<local:MyControl Width="200" Height="40"/>
|
|
</Border>
|
|
<Path Width="24" Height="24" HorizontalAlignment="Left" Fill="Orange" Data="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-8.512 8.272l5.532 3.243-.686 1.162-5.533-3.243.687-1.162zm-1.456 3.113l6.185 1.739-.332 1.23-6.204-1.667.351-1.302zm-.672 2.813l6.498.65-.117 1.28-6.504-.586.123-1.344zm-.193 2.469h6.667v1.333h-6.667v-1.333zm8.833 3.333h-11v-7h1v6h9v-6h1v7zm-.852-8.704l-3.56-5.219 1.115-.76 3.559 5.219-1.114.76zm1.356-.841l-1.08-6.224 1.328-.231 1.082 6.224-1.33.231z"/>
|
|
<Button HorizontalAlignment="Right" VerticalAlignment="Top" Background="Transparent" BorderThickness="0" Foreground="Green" Click="Button_Click">
|
|
<Image Width="64" Height="64" HorizontalAlignment="Left">
|
|
<Image.Source>
|
|
<DrawingImage>
|
|
<DrawingImage.Drawing>
|
|
<GeometryDrawing Brush="{Binding RelativeSource={RelativeSource AncestorType={x:Type Button}},Path=Foreground}"
|
|
Geometry="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-8.512 8.272l5.532 3.243-.686 1.162-5.533-3.243.687-1.162zm-1.456 3.113l6.185 1.739-.332 1.23-6.204-1.667.351-1.302zm-.672 2.813l6.498.65-.117 1.28-6.504-.586.123-1.344zm-.193 2.469h6.667v1.333h-6.667v-1.333zm8.833 3.333h-11v-7h1v6h9v-6h1v7zm-.852-8.704l-3.56-5.219 1.115-.76 3.559 5.219-1.114.76zm1.356-.841l-1.08-6.224 1.328-.231 1.082 6.224-1.33.231z"/>
|
|
</DrawingImage.Drawing>
|
|
</DrawingImage>
|
|
</Image.Source>
|
|
</Image>
|
|
</Button>
|
|
<Border BorderBrush="Red" BorderThickness="2" Width="400" Height="400" HorizontalAlignment="Right" VerticalAlignment="Bottom">
|
|
<local:MyGrid x:Name="myGrid">
|
|
<local:MyGrid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</local:MyGrid.RowDefinitions>
|
|
<local:MyGrid.ColDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</local:MyGrid.ColDefinitions>
|
|
<Border Background="Green"/>
|
|
<Border Grid.RowSpan="2" Width="20" HorizontalAlignment="Right" Background="Blue" Opacity=".5"/>
|
|
</local:MyGrid>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|