22 lines
913 B
Plaintext
22 lines
913 B
Plaintext
|
<Window x:Class="LensSimulatorWPF.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:LensSimulatorWPF"
|
||
|
mc:Ignorable="d"
|
||
|
Title="MainWindow" Height="500" Width="500">
|
||
|
<Grid Background="Black" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="50*"/>
|
||
|
<RowDefinition Height="15*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid Background="Wheat ">
|
||
|
<Canvas Name="canvas" Background="White" Width="1000" Height="1000"/>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</Window>
|