<Window x:Class="Bro.UI.Test"
|
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:imageCanvas="clr-namespace:Bro.Common.ImageCanvas;assembly=Bro.Common.ImageCanvas"
|
xmlns:local="clr-namespace:Bro.UI"
|
mc:Ignorable="d"
|
Title="Test" Height="450" Width="800">
|
<Grid ScrollViewer.CanContentScroll="False">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="67*"/>
|
<ColumnDefinition Width="725*"/>
|
</Grid.ColumnDefinitions>
|
<imageCanvas:ImageCanvas Grid.ColumnSpan="2">
|
</imageCanvas:ImageCanvas>
|
</Grid>
|
</Window>
|