Dock
This commit is contained in:
parent
b1d3ec73c9
commit
693d12b61c
35 changed files with 389 additions and 269 deletions
|
|
@ -2,19 +2,26 @@
|
|||
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:reactiveui="http://reactiveui.net"
|
||||
xmlns:inkforge="app:InkForge"
|
||||
xmlns:vm="using:InkForge.Desktop.ViewModels"
|
||||
xmlns:local="using:InkForge.Desktop.Views"
|
||||
mc:Ignorable="d"
|
||||
Width="800"
|
||||
Height="450"
|
||||
x:Class="InkForge.Desktop.Views.MainWindow"
|
||||
x:DataType="vm:AppViewModel"
|
||||
Title="MainWindow"
|
||||
inkforge:TopLevels.Register="{CompiledBinding}">
|
||||
<DockPanel>
|
||||
<NativeMenuBar />
|
||||
Title="MainWindow">
|
||||
<NativeMenu.Menu>
|
||||
<NativeMenu />
|
||||
</NativeMenu.Menu>
|
||||
|
||||
<reactiveui:ViewModelViewHost ViewModel="{CompiledBinding View}" />
|
||||
<DockPanel>
|
||||
<NativeMenuBar DockPanel.Dock="Top" />
|
||||
|
||||
<SplitView IsPaneOpen="true"
|
||||
DisplayMode="Inline">
|
||||
<SplitView.Pane>
|
||||
<local:WorkspacesView />
|
||||
</SplitView.Pane>
|
||||
|
||||
<local:DocumentsView />
|
||||
</SplitView>
|
||||
</DockPanel>
|
||||
</Window>
|
||||
Loading…
Add table
Add a link
Reference in a new issue