diff options
Diffstat (limited to 'MainWindow.xaml')
| -rw-r--r-- | MainWindow.xaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..b4a5565 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,18 @@ +<Window xmlns="https://github.com/avaloniaui" + 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:image="clr-namespace:Avalar.Views.Image" + xmlns:settings="clr-namespace:Avalar.Views.Settings" + mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" + x:Class="Avalar.MainWindow" + Title="Avalar"> + <Grid Margin="5"> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="*"/> + <ColumnDefinition Width="Auto"/> + </Grid.ColumnDefinitions> + <image:ImagePanel DataContext="{Binding ImageVm}" Grid.Column="0"/> + <settings:Settings DataContext="{Binding SettingsVm}" Grid.Column="1"/> + </Grid> +</Window> |
