forked from amkovkov/GranuSightSoftware2
12 lines
620 B
XML
12 lines
620 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:vm="using:GSS2.Test.ViewModels"
|
|
xmlns:local="using:GSS2.Test.Views"
|
|
x:DataType="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> |