forked from amkovkov/GranuSightSoftware2
12 lines
642 B
XML
12 lines
642 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">
|
|
<StackPanel Orientation="Vertical">
|
|
<ContentControl Content="{Binding CameraViewModel}" Width="200" Height="200"/>
|
|
<ContentControl Content="{Binding ResourcesViewModel}"/>
|
|
</StackPanel>
|
|
</UserControl> |