MainWindow.xaml
4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Window x:Class="HHECS.DAQClient.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:local="clr-namespace:HHECS.DAQClient"
xmlns:hc="https://handyorg.github.io/handycontrol"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
xmlns:viewmodel="clr-namespace:HHECS.DAQClient.ViewModel"
xmlns:model="clr-namespace:HHECS.DAQClient.Common"
d:DataContext="{d:DesignInstance Type=viewmodel:MainVM}"
Title="IOTCloud 数据采集" Height="600" Width="1024" MinWidth="800" MinHeight="450" WindowState="Maximized">
<Window.Resources>
<DataTemplate DataType="{x:Type model:LogModel}">
<TextBlock Foreground="{Binding Path=ForeColor}" TextWrapping="Wrap">
<TextBlock.Text>
<MultiBinding StringFormat="{}[{0:yyyy/MM/dd HH:mm:ss}]{1}">
<Binding Path="CreateTime"/>
<Binding Path="Messages"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="18"/>
</Grid.RowDefinitions>
<ToolBar Grid.Row="0" Grid.Column="0" VerticalAlignment="Stretch">
<hc:UniformSpacingPanel Spacing="10">
<Button x:Name="Btn_Start" Content="启动" IsEnabled="{Binding BtnStartEnabled}" Style="{StaticResource ButtonSuccess}" Command="{Binding StartCommand}"/>
<Button x:Name="Btn_Stop" Content="停止" IsEnabled="{Binding BtnStopEnabled}" Style="{StaticResource ButtonWarning}" Command="{Binding StopCommand}"/>
<ToggleButton hc:ToggleButtonAttach.ShowLabel="True" Content="自动上传" IsChecked="{Binding AutoCommit}" HorizontalAlignment="Center" Style="{StaticResource ToggleButtonSwitch}" />
</hc:UniformSpacingPanel>
</ToolBar>
<TabControl Grid.Row="1" Grid.Column="0" Style="{StaticResource TabControlBaseStyle}">
<TabItem Header="日志">
<ItemsControl ItemsSource="{Binding LogModels}">
<ItemsControl.Template>
<ControlTemplate>
<VirtualizingStackPanel x:Name="ScrollViewer">
<ItemsPresenter />
</VirtualizingStackPanel>
</ControlTemplate>
</ItemsControl.Template>
</ItemsControl>
</TabItem>
<TabItem Header="通讯配置">
<Frame Content="{Binding CommunicationPage}" NavigationUIVisibility="Hidden"/>
</TabItem>
<TabItem Header="设备信息">
<Frame Content="{Binding EquipmentPage}" NavigationUIVisibility="Hidden"/>
</TabItem>
<TabItem Header="待推送数据">
<Frame Content="{Binding EquipmentDataQueuePage}" NavigationUIVisibility="Hidden"/>
</TabItem>
</TabControl>
<StackPanel Grid.Row="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="{StaticResource DarkDefaultBrush}">
<TextBlock Text="Copyright © 2024 长沙华恒机器人系统有限公司" Foreground="{StaticResource SecondaryTextBrush}" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="0,1"/>
</StackPanel>
<hc:NotifyIcon x:Name="NotifyIconContextContent"
Text="数据采集"
Visibility="Visible"
Icon="/favicon.ico">
<hc:NotifyIcon.ContextMenu>
<ContextMenu Width="140">
<MenuItem Command="hc:ControlCommands.PushMainWindow2Top" Header="打开 数据采集"/>
<Separator></Separator>
<MenuItem Command="hc:ControlCommands.ShutdownApp" Header="退出"/>
</ContextMenu>
</hc:NotifyIcon.ContextMenu>
<hc:Interaction.Triggers>
<hc:EventTrigger EventName="Click">
<hc:EventToCommand Command="hc:ControlCommands.PushMainWindow2Top"/>
</hc:EventTrigger>
</hc:Interaction.Triggers>
</hc:NotifyIcon>
</Grid>
</Window>