Commit 1592684e by 鲁志-悦动

Replay滑动条刻度变大 And 添加新窗口加号按钮

parent 1fd4c769
...@@ -119,6 +119,7 @@ ...@@ -119,6 +119,7 @@
<ItemGroup> <ItemGroup>
<Resource Include="Icons\ai_close_24x24.png" /> <Resource Include="Icons\ai_close_24x24.png" />
<Resource Include="Icons\ai_refresh_24x24.png" /> <Resource Include="Icons\ai_refresh_24x24.png" />
<Resource Include="Icons\ai_add_32x32.png" />
<Content Include="Icons\area_24x24.png" /> <Content Include="Icons\area_24x24.png" />
<Resource Include="Icons\area_over_24x24.png" /> <Resource Include="Icons\area_over_24x24.png" />
<Resource Include="Icons\center_24x24.png" /> <Resource Include="Icons\center_24x24.png" />
......
...@@ -368,25 +368,6 @@ ...@@ -368,25 +368,6 @@
Content="音视频停止命令" Content="音视频停止命令"
Style="{StaticResource ButtonStyle}" />--> Style="{StaticResource ButtonStyle}" />-->
<ToggleButton
Grid.Row="0"
Grid.Column="6"
Width="100"
Height="40"
Margin="0,10,0,0"
Content="Replay"
IsChecked="{Binding ReplayIsChecked, Mode=TwoWay}"
Style="{StaticResource ToggleButtonStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="Checked">
<b:InvokeCommandAction Command="{Binding ReplayCheckedCommand}" />
</b:EventTrigger>
<b:EventTrigger EventName="Unchecked">
<b:InvokeCommandAction Command="{Binding ReplayUncheckedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ToggleButton>
<CheckBox <CheckBox
Grid.Row="0" Grid.Row="0"
Grid.Column="4" Grid.Column="4"
...@@ -410,7 +391,7 @@ ...@@ -410,7 +391,7 @@
Content="Live" Content="Live"
Style="{StaticResource ButtonStyle}" />--> Style="{StaticResource ButtonStyle}" />-->
<Button <!--<Button
Grid.Row="0" Grid.Row="0"
Grid.Column="5" Grid.Column="5"
Width="100" Width="100"
...@@ -418,7 +399,7 @@ ...@@ -418,7 +399,7 @@
Margin="10,10,0,0" Margin="10,10,0,0"
Command="{Binding Path=NewWindowCommand}" Command="{Binding Path=NewWindowCommand}"
Content="New Window" Content="New Window"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />-->
<ToggleButton <ToggleButton
Grid.Row="1" Grid.Row="1"
...@@ -670,7 +651,7 @@ ...@@ -670,7 +651,7 @@
Content="发送" Content="发送"
Style="{StaticResource ButtonStyle}" />--> Style="{StaticResource ButtonStyle}" />-->
<Button <!--<Button
Grid.Row="3" Grid.Row="3"
Grid.Column="1" Grid.Column="1"
Width="100" Width="100"
...@@ -690,11 +671,11 @@ ...@@ -690,11 +671,11 @@
Command="{Binding Path=OutPointCommand}" Command="{Binding Path=OutPointCommand}"
Content="Out Point" Content="Out Point"
Style="{StaticResource ButtonStyle}" Style="{StaticResource ButtonStyle}"
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" /> Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />-->
<Button <Button
Grid.Row="3" Grid.Row="3"
Grid.Column="3" Grid.Column="2"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
...@@ -705,7 +686,7 @@ ...@@ -705,7 +686,7 @@
<Button <Button
Grid.Row="3" Grid.Row="3"
Grid.Column="4" Grid.Column="3"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
...@@ -714,11 +695,30 @@ ...@@ -714,11 +695,30 @@
Style="{StaticResource ButtonStyle}" Style="{StaticResource ButtonStyle}"
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" /> Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />
<Button <ToggleButton
Grid.Row="3" Grid.Row="3"
Grid.Column="0" Grid.Column="0"
Width="100" Width="100"
Height="40" Height="40"
Margin="0,10,0,0"
Content="Replay"
IsChecked="{Binding ReplayIsChecked, Mode=TwoWay}"
Style="{StaticResource ToggleButtonStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="Checked">
<b:InvokeCommandAction Command="{Binding ReplayCheckedCommand}" />
</b:EventTrigger>
<b:EventTrigger EventName="Unchecked">
<b:InvokeCommandAction Command="{Binding ReplayUncheckedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ToggleButton>
<Button
Grid.Row="3"
Grid.Column="1"
Width="100"
Height="40"
Margin="10" Margin="10"
Command="{Binding Path=CleanInPointCommand}" Command="{Binding Path=CleanInPointCommand}"
Content="Clean Points" Content="Clean Points"
......
...@@ -432,6 +432,21 @@ ...@@ -432,6 +432,21 @@
Grid.Row="1" Grid.Row="1"
VerticalAlignment="Bottom" VerticalAlignment="Bottom"
Orientation="Vertical"> Orientation="Vertical">
<!-- 新窗口 -->
<Border ToolTip="新窗口">
<Button
x:Name="_NewWindowBtn_"
Width="32"
Height="32"
Command="{Binding NewWindowCommand}"
Style="{StaticResource ButtonStyle}"
Visibility="Collapsed">
<Image
Width="24"
Height="24"
Source="/VIZ.FGOUT.Module.Resource;component/Icons/ai_add_32x32.png" />
</Button>
</Border>
<!-- 重启算法 --> <!-- 重启算法 -->
<Border ToolTip="重启算法"> <Border ToolTip="重启算法">
<Button <Button
......
...@@ -156,6 +156,33 @@ namespace VIZ.FGOUT.Module ...@@ -156,6 +156,33 @@ namespace VIZ.FGOUT.Module
{ {
//_DetectBtn_.Visibility = //_DetectBtn_.Visibility =
_RestartBtn_.Visibility = _StopBtn_.Visibility = Visibility.Collapsed; _RestartBtn_.Visibility = _StopBtn_.Visibility = Visibility.Collapsed;
_NewWindowBtn_.Visibility = Visibility.Visible;
}
}
#endregion
#region IsCam4
public static readonly DependencyProperty IsCam4Property =
DependencyProperty.Register(nameof(IsCam4), typeof(bool), typeof(NDIView), new PropertyMetadata(false, OnIsCam4EnabledChanged));
public bool IsCam4
{
get => (bool)GetValue(IsCam4Property);
set => SetValue(IsCam4Property, value);
}
static void OnIsCam4EnabledChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((NDIView)sender).IsCam4EnabledChanged(args);
}
protected void IsCam4EnabledChanged(DependencyPropertyChangedEventArgs e)
{
if ((bool)e.NewValue)
{
_RestartBtn_.Visibility = _StopBtn_.Visibility = Visibility.Collapsed;
} }
} }
......
...@@ -3,9 +3,11 @@ using System.Collections.Generic; ...@@ -3,9 +3,11 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using VIZ.FGOUT.Domain; using VIZ.FGOUT.Domain;
using VIZ.FGOUT.Module.SystemSetting.View;
using VIZ.FGOUT.Storage; using VIZ.FGOUT.Storage;
using VIZ.Framework.Common; using VIZ.Framework.Common;
using VIZ.Framework.Core; using VIZ.Framework.Core;
using VIZ.Framework.Domain;
namespace VIZ.FGOUT.Module namespace VIZ.FGOUT.Module
{ {
...@@ -354,6 +356,18 @@ namespace VIZ.FGOUT.Module ...@@ -354,6 +356,18 @@ namespace VIZ.FGOUT.Module
#endregion #endregion
#region NewWindowCommand -- 新窗口命令
public VCommand NewWindowCommand { get; set; }
private void NewWindow()
{
var newWindowModel = new NewWindowModel();
ApplicationDomain.MessageManager.Send(newWindowModel);
}
#endregion
#region RestartCommand -- 算法重启命令 #region RestartCommand -- 算法重启命令
/// <summary> /// <summary>
......
...@@ -285,8 +285,11 @@ namespace VIZ.FGOUT.Module ...@@ -285,8 +285,11 @@ namespace VIZ.FGOUT.Module
var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, NDIViewKeys.cam3); var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, NDIViewKeys.cam3);
if (view3 != null) if (view3 != null)
{ {
//WPFHelper.Invoke(() =>
//{
// 更新视频流 // 更新视频流
view3.video.UpdateVideoFrame(dsExtend, true); view3.video.UpdateVideoFrame(dsExtend, true);
//});
// 更新视频控件跟踪框信息 // 更新视频控件跟踪框信息
if (_cam3Infos.Count > 0) if (_cam3Infos.Count > 0)
{ {
...@@ -314,7 +317,10 @@ namespace VIZ.FGOUT.Module ...@@ -314,7 +317,10 @@ namespace VIZ.FGOUT.Module
_cam3Infos.Add(view3.saveInfo); _cam3Infos.Add(view3.saveInfo);
} }
} }
//WPFHelper.Invoke(() =>
//{
view3.video.UpdateTrackingBox(_cam3Infos); view3.video.UpdateTrackingBox(_cam3Infos);
//});
} }
} }
} }
......
...@@ -87,6 +87,7 @@ namespace VIZ.FGOUT.Module ...@@ -87,6 +87,7 @@ namespace VIZ.FGOUT.Module
this.SettingCommand = new VCommand<string>(this.Setting); this.SettingCommand = new VCommand<string>(this.Setting);
//目标检测命令 //目标检测命令
this.DetectCommand = new VCommand(this.Detect); this.DetectCommand = new VCommand(this.Detect);
this.NewWindowCommand = new VCommand(this.NewWindow);
this.RestartCommand = new VCommand(this.Restart); this.RestartCommand = new VCommand(this.Restart);
this.StopCommand = new VCommand(this.Stop); this.StopCommand = new VCommand(this.Stop);
this.IsBorderShowChangedCommand = new VCommand(this.IsBorderShowChanged); this.IsBorderShowChangedCommand = new VCommand(this.IsBorderShowChanged);
......
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
mc:Ignorable="d"> mc:Ignorable="d">
<Grid Background="#2C333B"> <Grid Background="#2C333B">
<local:NDIView <local:NDIView
IsCam2="True" IsCam4="True"
NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_4}" NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_4}"
VideoBorderBrush="#B85069" /> VideoBorderBrush="red" />
</Grid> </Grid>
</Window> </Window>
...@@ -14,7 +14,7 @@ namespace VIZ.FGOUT.Module ...@@ -14,7 +14,7 @@ namespace VIZ.FGOUT.Module
private static int _height = 30; // 高度 private static int _height = 30; // 高度
private static int _min = 0; // 最小值 private static int _min = 0; // 最小值
private static int _max = 500; // 最大值 private static int _max = 500; // 最大值
private static int _freq = 1; // 出现刻度的间距 private static int _freq = 10; // 出现刻度的间距
#endregion #endregion
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B3844A2B1C255A8777FBAF2CF55118D580EB3828BE185CD94EF48DC215051450" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "44D2D6FF666CA5C1C73C69DE4E677A39716FB44BF411BF5A33DE466303B66E9B"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B3844A2B1C255A8777FBAF2CF55118D580EB3828BE185CD94EF48DC215051450" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "44D2D6FF666CA5C1C73C69DE4E677A39716FB44BF411BF5A33DE466303B66E9B"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "568BA73618BA1F6479483D3784A685B7578E494CFE9DEEF6DFC5B9866AC947B6" #pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "18EC0AAB488F408F99345878E03BD10BC03FB9C42B926B3C11A07DBCD9CB00C5"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -94,13 +94,21 @@ namespace VIZ.FGOUT.Module { ...@@ -94,13 +94,21 @@ namespace VIZ.FGOUT.Module {
#line 438 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 438 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _NewWindowBtn_;
#line default
#line hidden
#line 453 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_; internal System.Windows.Controls.Button _RestartBtn_;
#line default #line default
#line hidden #line hidden
#line 452 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 467 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_; internal System.Windows.Controls.Button _StopBtn_;
...@@ -177,9 +185,12 @@ namespace VIZ.FGOUT.Module { ...@@ -177,9 +185,12 @@ namespace VIZ.FGOUT.Module {
this._Setting_ = ((System.Windows.Controls.Button)(target)); this._Setting_ = ((System.Windows.Controls.Button)(target));
return; return;
case 6: case 6:
this._RestartBtn_ = ((System.Windows.Controls.Button)(target)); this._NewWindowBtn_ = ((System.Windows.Controls.Button)(target));
return; return;
case 7: case 7:
this._RestartBtn_ = ((System.Windows.Controls.Button)(target));
return;
case 8:
this._StopBtn_ = ((System.Windows.Controls.Button)(target)); this._StopBtn_ = ((System.Windows.Controls.Button)(target));
return; return;
} }
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "568BA73618BA1F6479483D3784A685B7578E494CFE9DEEF6DFC5B9866AC947B6" #pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "18EC0AAB488F408F99345878E03BD10BC03FB9C42B926B3C11A07DBCD9CB00C5"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -94,13 +94,21 @@ namespace VIZ.FGOUT.Module { ...@@ -94,13 +94,21 @@ namespace VIZ.FGOUT.Module {
#line 438 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 438 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _NewWindowBtn_;
#line default
#line hidden
#line 453 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_; internal System.Windows.Controls.Button _RestartBtn_;
#line default #line default
#line hidden #line hidden
#line 452 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 467 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_; internal System.Windows.Controls.Button _StopBtn_;
...@@ -177,9 +185,12 @@ namespace VIZ.FGOUT.Module { ...@@ -177,9 +185,12 @@ namespace VIZ.FGOUT.Module {
this._Setting_ = ((System.Windows.Controls.Button)(target)); this._Setting_ = ((System.Windows.Controls.Button)(target));
return; return;
case 6: case 6:
this._RestartBtn_ = ((System.Windows.Controls.Button)(target)); this._NewWindowBtn_ = ((System.Windows.Controls.Button)(target));
return; return;
case 7: case 7:
this._RestartBtn_ = ((System.Windows.Controls.Button)(target));
return;
case 8:
this._StopBtn_ = ((System.Windows.Controls.Button)(target)); this._StopBtn_ = ((System.Windows.Controls.Button)(target));
return; return;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
2024-03-12 11:02:20,975 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-14 11:11:56,707 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-12 11:05:44,885 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-14 11:12:05,956 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-12 11:06:01,203 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-14 11:12:06,333 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:06,780 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,179 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,665 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,705 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,740 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,778 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,816 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,858 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,895 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,896 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,934 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:07,972 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,010 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,049 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,084 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,085 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,119 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,157 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,196 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,232 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,270 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,306 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,346 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,349 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,383 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,420 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,458 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,497 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,536 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,575 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,612 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,613 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,650 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,691 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,729 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,768 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,802 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,839 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,881 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,916 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,917 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:08,999 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,011 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,058 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,059 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,094 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,135 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,170 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,171 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,206 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,242 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,279 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,317 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,355 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,392 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Right
2024-03-14 11:12:09,836 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,348 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,383 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,419 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,455 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,494 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,534 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,572 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,576 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,612 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,651 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,689 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,691 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,775 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,778 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,815 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,851 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,852 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,887 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,926 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,960 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:12:10,998 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-14 11:13:12,949 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:12:18,448 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-03-14 14:12:34,997 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:12:36,019 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:19:58,528 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:19:59,763 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:20:00,380 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:20:01,110 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:33:19,001 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:33:20,220 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:37:48,282 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:38:15,385 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:16,528 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:18,329 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:18,948 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:23,059 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:27,208 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:31,243 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:32,480 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:33,733 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:34,440 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:35,637 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:36,264 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:37,513 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:38,183 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:39,427 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:40,076 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:41,300 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-14 14:40:43,651 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-14 14:40:44,895 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
...@@ -10,11 +10,11 @@ none ...@@ -10,11 +10,11 @@ none
false false
DEBUG;TRACE DEBUG;TRACE
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT\App.xaml C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT\App.xaml
21265083526 2-1347366880
6-790135758 6968741766
421356718200 43-1958993781
CloseAlgorithmWindow.xaml;MainWindow.xaml; CloseAlgorithmWindow.xaml;MainWindow.xaml;
True False
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment