forked from amkovkov/GranuSightSoftware2
1) remove unused components: camera view (due it causes segmentation faults), compute resources and all related, illuminator controller (due in useless without camera view), image storage service, temperature and humidity service 2) database schema - reduce tables references, features storing in records themselves in compressed form, add records creation and editing date and time, add separator comment column 3) analysis - rework of pipeline and ui, now database storing only raw data and all display values calculated from it 4) lights service - add reconnection if disconnected 5) add width and height command line arguments 6) fix some typos and other issues
20 lines
659 B
XML
20 lines
659 B
XML
<Window
|
|
Height="{Binding Height}"
|
|
Title="{Binding Title}"
|
|
Topmost="{Binding Topmost}"
|
|
Width="{Binding Width}"
|
|
WindowDecorations="{Binding WindowDecorations}"
|
|
WindowState="{Binding WindowState}"
|
|
x:Class="GSS2.UI.Core.MainWindow"
|
|
x:DataType="vm:MainWindowViewModel"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:vm="using:GSS2.UI.Core.ViewModels"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns="https://github.com/avaloniaui"
|
|
>
|
|
|
|
<ContentControl x:Name="MainContent" />
|
|
|
|
</Window>
|