MainWindow.xaml
3.82 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
<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="数据采集_HUAHENG" Height="450" Width="800">
<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="30"/>
<RowDefinition Height="*"/>
<RowDefinition Height="18"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Grid.Column="0" VerticalAlignment="Stretch">
<ToolBar>
<Button x:Name="Btn_Start" Content="启动" Width="60" IsEnabled="{Binding BtnStartEnabled}" Margin="10,0" Style="{StaticResource ButtonSuccess.Small}" Command="{Binding StartCommand}"/>
<Button x:Name="Btn_Stop" Content="停止" Width="60" IsEnabled="{Binding BtnStopEnabled}" Style="{StaticResource ButtonWarning.Small}" Command="{Binding StopCommand}"/>
</ToolBar>
</StackPanel>
<ItemsControl Grid.Row="1" Grid.Column="0" ItemsSource="{Binding LogModels}">
<ItemsControl.Template>
<ControlTemplate>
<VirtualizingStackPanel x:Name="ScrollViewer">
<ItemsPresenter />
</VirtualizingStackPanel>
<!--<ScrollViewer x:Name="ScrollViewer" Padding="{TemplateBinding Padding}">
</ScrollViewer>-->
</ControlTemplate>
</ItemsControl.Template>
</ItemsControl>
<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>