forked from amkovkov/GranuSightSoftware2
Move ResourceView and all related to ui core namespace GSS2.UI.Core Split ResourceView on separate elements Make parts folding depended on size
12 lines
746 B
XML
12 lines
746 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local_vm="using:GSS2.Test.ViewModels"
|
|
xmlns:core_vm="using:GSS2.UI.Core.ViewModels"
|
|
x:DataType="local_vm:MainViewModel"
|
|
x:Class="GSS2.Test.Views.MainView">
|
|
<Grid RowDefinitions="*,*">
|
|
<ContentControl Grid.Row="0" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Content="{Binding CameraViewModel}" />
|
|
<ContentControl Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Content="{Binding ResourcesViewModel}" />
|
|
</Grid>
|
|
</UserControl> |