Commit 94f88b91 by 鲁志-悦动

选框操作内元素 And 自动模式下开始、结束抠图不可用 And 二次确认自动发送倒计时显示

parent 1164b610
namespace VIZ.FGOUT.Domain
{
public class AutoSendModel
{
public int Interval { get; set; }
}
}
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
<Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__detect.cs" /> <Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__detect.cs" />
<Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__start_end.cs" /> <Compile Include="Message\Algorithm\Implementation\AlgorithmMessage__start_end.cs" />
<Compile Include="Message\Algorithm\Interface\IAlgorithmMessage__roi.cs" /> <Compile Include="Message\Algorithm\Interface\IAlgorithmMessage__roi.cs" />
<Compile Include="Message\Setting\AutoSendModel.cs" />
<Compile Include="Message\Setting\CleanInPointsModel.cs" /> <Compile Include="Message\Setting\CleanInPointsModel.cs" />
<Compile Include="Message\Setting\CleanPlaceModel.cs" /> <Compile Include="Message\Setting\CleanPlaceModel.cs" />
<Compile Include="Message\Setting\DisplayPlaceModel.cs" /> <Compile Include="Message\Setting\DisplayPlaceModel.cs" />
......
d3e4f59c122a03f90859987a8cf2800734b297bb 93ee4586c7532ced3ab352476596ea66c48809f0
...@@ -197,7 +197,8 @@ ...@@ -197,7 +197,8 @@
Style="{StaticResource CheckBox_Setting}" /> Style="{StaticResource CheckBox_Setting}" />
</Grid> </Grid>
</GroupBox>--> </GroupBox>-->
<GroupBox <!-- 检测模式 -->
<!--<GroupBox
Grid.ColumnSpan="2" Grid.ColumnSpan="2"
Foreground="White" Foreground="White"
Header="检测模式"> Header="检测模式">
...@@ -224,22 +225,51 @@ ...@@ -224,22 +225,51 @@
IsChecked="{Binding Path=IsEnableTarget, Mode=TwoWay}" IsChecked="{Binding Path=IsEnableTarget, Mode=TwoWay}"
Style="{StaticResource CheckBox_Setting}" /> Style="{StaticResource CheckBox_Setting}" />
</StackPanel> </StackPanel>
</GroupBox> </GroupBox>-->
<CheckBox
x:Name="_AutoMode_"
Grid.Row="0"
Grid.Column="0"
Width="100"
Height="40"
Margin="10,5"
Click="AutoMode_OnClick"
Content="自动"
Foreground="White"
IsChecked="{Binding Path=IsAutoEnable, Mode=TwoWay}"
Style="{StaticResource CheckBox_Setting}" />
<CheckBox
x:Name="_ManualMode_"
Grid.Row="1"
Grid.Column="0"
Width="100"
Height="40"
Margin="10,5,0,5"
Click="ManualMode_OnClick"
Content="手动"
Foreground="White"
IsChecked="{Binding Path=IsEnableTarget, Mode=TwoWay}"
Style="{StaticResource CheckBox_Setting}" />
<Button <Button
Grid.Column="2" Grid.Row="1"
Grid.Column="1"
Width="100" Width="100"
Height="40" Height="40"
Margin="10,10,0,0" Margin="10,10,0,0"
Command="{Binding Path=MattStartCommand}" Command="{Binding Path=MattStartCommand}"
Content="开始" Content="开始"
IsEnabled="{Binding MattStartIsEnabled}"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<Button <Button
Grid.Column="3" Grid.Row="1"
Grid.Column="2"
Width="100" Width="100"
Height="40" Height="40"
Margin="10,10,0,0" Margin="10,10,0,0"
Command="{Binding Path=MattEndCommand}" Command="{Binding Path=MattEndCommand}"
Content="结束" Content="结束"
IsEnabled="{Binding MattStartIsEnabled}"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<!--<GroupBox <!--<GroupBox
Grid.Row="1" Grid.Row="1"
...@@ -390,8 +420,8 @@ ...@@ -390,8 +420,8 @@
Style="{StaticResource ButtonStyle}" />--> Style="{StaticResource ButtonStyle}" />-->
<ToggleButton <ToggleButton
Grid.Row="1" Grid.Row="0"
Grid.Column="0" Grid.Column="1"
Width="100" Width="100"
Height="40" Height="40"
Margin="10,10,10,10" Margin="10,10,10,10"
...@@ -410,8 +440,8 @@ ...@@ -410,8 +440,8 @@
</ToggleButton> </ToggleButton>
<ToggleButton <ToggleButton
Grid.Row="1" Grid.Row="0"
Grid.Column="1" Grid.Column="2"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
...@@ -428,70 +458,88 @@ ...@@ -428,70 +458,88 @@
</b:EventTrigger> </b:EventTrigger>
</b:Interaction.Triggers> </b:Interaction.Triggers>
</ToggleButton> </ToggleButton>
<!-- 选框操作 -->
<ToggleButton <GroupBox
Grid.Row="1" Grid.Row="0"
Grid.Column="2" Grid.RowSpan="2"
Width="100"
Height="40"
Margin="10"
Content="忽略"
IsChecked="{Binding InvalidIsChecked}"
IsEnabled="{Binding InvalidEnable}"
Style="{StaticResource ToggleButtonStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="Checked">
<b:InvokeCommandAction Command="{Binding InvalidRegionCommand}" />
</b:EventTrigger>
<b:EventTrigger EventName="Unchecked">
<b:InvokeCommandAction Command="{Binding InvalidRegionUncheckedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ToggleButton>
<Button
Grid.Row="1"
Grid.Column="3" Grid.Column="3"
Width="100" Grid.ColumnSpan="2"
Height="40" Foreground="White"
Margin="10" Header="选框操作">
Command="{Binding Path=CleanCommand}" <Grid>
Content="清空" <Grid.RowDefinitions>
IsEnabled="{Binding CleanEnable}" <RowDefinition />
Style="{StaticResource ButtonStyle}" /> <RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<ToggleButton
Grid.Row="0"
Grid.Column="0"
Width="100"
Height="40"
Margin="10"
Content="忽略"
IsChecked="{Binding InvalidIsChecked}"
IsEnabled="{Binding InvalidEnable}"
Style="{StaticResource ToggleButtonStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="Checked">
<b:InvokeCommandAction Command="{Binding InvalidRegionCommand}" />
</b:EventTrigger>
<b:EventTrigger EventName="Unchecked">
<b:InvokeCommandAction Command="{Binding InvalidRegionUncheckedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ToggleButton>
<Button <Button
Grid.Row="1" Grid.Row="1"
Grid.Column="4" Grid.Column="0"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
Command="{Binding Path=SendPlaceCommand}" Command="{Binding Path=CleanCommand}"
Content="发送" Content="清空"
IsEnabled="{Binding SendEnable}" IsEnabled="{Binding CleanEnable}"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<!--<Button <Button
Grid.Row="1" Grid.Row="1"
Grid.Column="5" Grid.Column="1"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
Command="{Binding Path=SavePalceCommand}" Command="{Binding Path=SendPlaceCommand}"
Content="保存位置" Content="发送"
IsEnabled="{Binding SaveEnable}" IsEnabled="{Binding SendEnable}"
Style="{StaticResource ButtonStyle}" />--> Style="{StaticResource ButtonStyle}" />
<Button <!--<Button
Grid.Row="1" Grid.Row="1"
Grid.Column="5" Grid.Column="5"
Width="100" Width="100"
Height="40" Height="40"
Margin="10" Margin="10"
Command="{Binding Path=RefreshPositionCommand}" Command="{Binding Path=SavePalceCommand}"
Content="恢复" Content="保存位置"
IsEnabled="{Binding SendEnable}" IsEnabled="{Binding SaveEnable}"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />-->
<Button
Grid.Row="0"
Grid.Column="1"
Width="100"
Height="40"
Margin="10"
Command="{Binding Path=RefreshPositionCommand}"
Content="恢复"
IsEnabled="{Binding SendEnable}"
Style="{StaticResource ButtonStyle}" />
</Grid>
</GroupBox>
<!--<Button <!--<Button
Grid.Row="2" Grid.Row="2"
...@@ -627,6 +675,12 @@ ...@@ -627,6 +675,12 @@
<local:TextBoxEnterKeyUpdateBehavior /> <local:TextBoxEnterKeyUpdateBehavior />
</b:Interaction.Behaviors>--> </b:Interaction.Behaviors>-->
</TextBox> </TextBox>
<TextBlock
Margin="20,5,5,5"
VerticalAlignment="Center"
FontSize="14"
Foreground="White"
Text="{Binding AutoSendCount}" />
</StackPanel> </StackPanel>
</GroupBox> </GroupBox>
......
...@@ -50,6 +50,11 @@ namespace VIZ.FGOUT.Module ...@@ -50,6 +50,11 @@ namespace VIZ.FGOUT.Module
// 注册服务 // 注册服务
//ApplicationDomainEx.ServiceManager.AddService(NDIViewKeys.MainView, this); //ApplicationDomainEx.ServiceManager.AddService(NDIViewKeys.MainView, this);
ApplicationDomainEx.ServiceManager.AddService(NDIMainViewKeys.MainView, this); ApplicationDomainEx.ServiceManager.AddService(NDIMainViewKeys.MainView, this);
// 初始化二次确认自动发送倒计时器
InitAutoSendTimer();
//_autoSend_Timer.Stop();
//_autoSend_Timer.Start();
} }
/// <summary> /// <summary>
...@@ -135,8 +140,46 @@ namespace VIZ.FGOUT.Module ...@@ -135,8 +140,46 @@ namespace VIZ.FGOUT.Module
//ApplicationDomain.MessageManager.Register<ReplayStartValueModel>(this, this.ReplayStartValueFromNDIViewModel); //ApplicationDomain.MessageManager.Register<ReplayStartValueModel>(this, this.ReplayStartValueFromNDIViewModel);
////Replay出点值 ////Replay出点值
//ApplicationDomain.MessageManager.Register<ReplayEndValueModel>(this, this.ReplayEndValueFromNDIViewModel); //ApplicationDomain.MessageManager.Register<ReplayEndValueModel>(this, this.ReplayEndValueFromNDIViewModel);
ApplicationDomain.MessageManager.Register<AutoSendModel>(this, this.AutoSendIntervalTimeChanged);
}
private int _tempAutoSendCount = 4;
private void AutoSendIntervalTimeChanged(AutoSendModel model)
{
_tempAutoSendCount = AutoSendCount = model.Interval / 1000 + 1;
_autoSend_Timer.Stop();
_autoSend_Timer.Start();
}
#region 自动发送倒计时器
private System.Timers.Timer _autoSend_Timer = new System.Timers.Timer();
public void InitAutoSendTimer()
{
_autoSend_Timer.Interval = 1000;
_autoSend_Timer.Elapsed += UpdateAutoSendTimer_Tick;
}
private void UpdateAutoSendTimer_Tick(object sender, EventArgs e)
{
try
{
WPFHelper.BeginInvoke(() =>
{
if (AutoSendCount == 1)
AutoSendCount = _tempAutoSendCount;
AutoSendCount--;
});
}
catch (Exception ex)
{
log.Error(ex);
}
} }
#endregion
//int _sliderStartInitValue; //int _sliderStartInitValue;
//int _sliderEndInitValue; //int _sliderEndInitValue;
//private void ReplayStartValueFromNDIViewModel(ReplayStartValueModel vm) //private void ReplayStartValueFromNDIViewModel(ReplayStartValueModel vm)
...@@ -536,6 +579,8 @@ namespace VIZ.FGOUT.Module ...@@ -536,6 +579,8 @@ namespace VIZ.FGOUT.Module
//2个位置相关按钮都不可用 //2个位置相关按钮都不可用
EndEnable = StartEnable = false; EndEnable = StartEnable = false;
StartIsChecked = EndIsChecked = InvalidIsChecked = false; StartIsChecked = EndIsChecked = InvalidIsChecked = false;
MattStartIsEnabled = true;
} }
#endregion #endregion
...@@ -616,6 +661,8 @@ namespace VIZ.FGOUT.Module ...@@ -616,6 +661,8 @@ namespace VIZ.FGOUT.Module
{ {
//ReconfirmSendParamsCommon(ReconfirmStatus.Abandon); //ReconfirmSendParamsCommon(ReconfirmStatus.Abandon);
ApplicationDomain.MessageManager.Send(_reconfirmAbandonModel); ApplicationDomain.MessageManager.Send(_reconfirmAbandonModel);
_autoSend_Timer.Stop();
} }
public VCommand SendCommand { get; set; } public VCommand SendCommand { get; set; }
...@@ -640,6 +687,17 @@ namespace VIZ.FGOUT.Module ...@@ -640,6 +687,17 @@ namespace VIZ.FGOUT.Module
} }
} }
private int _autoSendCount = 3;
public int AutoSendCount
{
get => _autoSendCount;
set
{
_autoSendCount = value;
this.RaisePropertyChanged(nameof(AutoSendCount));
}
}
public ReconfirmAutoSendIntervalTimeModel _reconfirmAutoSendIntervalTimeModel = new ReconfirmAutoSendIntervalTimeModel(); public ReconfirmAutoSendIntervalTimeModel _reconfirmAutoSendIntervalTimeModel = new ReconfirmAutoSendIntervalTimeModel();
public VCommand<RoutedEventArgs> AutoSendIntervalTimeChangedCommand { get; set; } public VCommand<RoutedEventArgs> AutoSendIntervalTimeChangedCommand { get; set; }
private void AutoSendIntervalTimeChanged(RoutedEventArgs e) private void AutoSendIntervalTimeChanged(RoutedEventArgs e)
...@@ -828,6 +886,8 @@ namespace VIZ.FGOUT.Module ...@@ -828,6 +886,8 @@ namespace VIZ.FGOUT.Module
SliderStartValue = NDIViewModel.SliderStartValue; SliderStartValue = NDIViewModel.SliderStartValue;
SliderEndValue = NDIViewModel.SliderEndValue; SliderEndValue = NDIViewModel.SliderEndValue;
_isReplayChecked = false; _isReplayChecked = false;
_autoSend_Timer.Stop();
} }
private void ReplayUnchecked() private void ReplayUnchecked()
...@@ -1372,6 +1432,8 @@ namespace VIZ.FGOUT.Module ...@@ -1372,6 +1432,8 @@ namespace VIZ.FGOUT.Module
//6个位置相关按钮都可用 //6个位置相关按钮都可用
InvalidEnable = EndEnable = StartEnable = true; InvalidEnable = EndEnable = StartEnable = true;
SaveEnable = SendEnable = CleanEnable = true; SaveEnable = SendEnable = CleanEnable = true;
MattStartIsEnabled = false;
} }
/// <summary> /// <summary>
...@@ -1513,6 +1575,13 @@ namespace VIZ.FGOUT.Module ...@@ -1513,6 +1575,13 @@ namespace VIZ.FGOUT.Module
set { startEnable = value; this.RaisePropertyChanged(nameof(StartEnable)); } set { startEnable = value; this.RaisePropertyChanged(nameof(StartEnable)); }
} }
private bool _mattStartIsEnabled = true;
public bool MattStartIsEnabled
{
get { return _mattStartIsEnabled; }
set { _mattStartIsEnabled = value; this.RaisePropertyChanged(nameof(MattStartIsEnabled)); }
}
private bool _endIsChecked; private bool _endIsChecked;
/// <summary> /// <summary>
/// 结束位置是否选中 /// 结束位置是否选中
......
...@@ -31,6 +31,8 @@ namespace VIZ.FGOUT.Module ...@@ -31,6 +31,8 @@ namespace VIZ.FGOUT.Module
_autoSend_Timer.Stop(); _autoSend_Timer.Stop();
_autoSend_Timer.Start(); _autoSend_Timer.Start();
AutoSendModel autoSendModel = new AutoSendModel(){ Interval = ALGORITHM_ReconfirmAutoSend_TIME };
} }
/// <summary> /// <summary>
...@@ -41,7 +43,7 @@ namespace VIZ.FGOUT.Module ...@@ -41,7 +43,7 @@ namespace VIZ.FGOUT.Module
/// <summary> /// <summary>
/// 算法二次确认自动发送时间 /// 算法二次确认自动发送时间
/// </summary> /// </summary>
protected readonly int ALGORITHM_ReconfirmAutoSend_TIME = ApplicationDomain.IniStorage.GetValue<AlgorithmConfig, int>(p => p.ALGORITHM_ReconfirmAutoSend_TIME); protected int ALGORITHM_ReconfirmAutoSend_TIME = ApplicationDomain.IniStorage.GetValue<AlgorithmConfig, int>(p => p.ALGORITHM_ReconfirmAutoSend_TIME);
//CleanPlaceModel cpModel = new CleanPlaceModel{ CleanPlace = true }; //CleanPlaceModel cpModel = new CleanPlaceModel{ CleanPlace = true };
/// <summary> /// <summary>
......
...@@ -344,7 +344,7 @@ namespace VIZ.FGOUT.Module ...@@ -344,7 +344,7 @@ namespace VIZ.FGOUT.Module
{ {
if (this.ViewKey != NDIViewKeys.CAM_1) if (this.ViewKey != NDIViewKeys.CAM_1)
return; return;
_autoSend_Timer.Interval = reconfirmAutoSendIntervalTimeModel.IntervalTime * 1000; _autoSend_Timer.Interval = ALGORITHM_ReconfirmAutoSend_TIME = reconfirmAutoSendIntervalTimeModel.IntervalTime * 1000;
} }
private void ReconfirmSendParamsCommon(ReconfirmStatus reconfirmStatus) private void ReconfirmSendParamsCommon(ReconfirmStatus reconfirmStatus)
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9D2B2F6CF035D1B06FC8DD16AFF531F620ADEAE09A243CC524307F1763D19790" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1A5E5C45B7C6682273BB06D6E7240FD1F78577BC498AD968A13AE3C50311E4AB"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module { ...@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 206 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 230 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _AutoMode_; internal System.Windows.Controls.CheckBox _AutoMode_;
...@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module { ...@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 217 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 243 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _ManualMode_; internal System.Windows.Controls.CheckBox _ManualMode_;
...@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module { ...@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1018 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1072 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1; internal VIZ.FGOUT.Module.NDIView cam1;
...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module { ...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1109 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1163 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2; internal VIZ.FGOUT.Module.NDIView cam2;
...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module { ...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1124 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1178 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3; internal VIZ.FGOUT.Module.NDIView cam3;
...@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module { ...@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module {
case 2: case 2:
this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target)); this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 210 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 236 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick); this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick);
#line default #line default
...@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module { ...@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module {
case 3: case 3:
this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target)); this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 221 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 249 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick); this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick);
#line default #line default
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9D2B2F6CF035D1B06FC8DD16AFF531F620ADEAE09A243CC524307F1763D19790" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1A5E5C45B7C6682273BB06D6E7240FD1F78577BC498AD968A13AE3C50311E4AB"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module { ...@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 206 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 230 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _AutoMode_; internal System.Windows.Controls.CheckBox _AutoMode_;
...@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module { ...@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 217 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 243 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.CheckBox _ManualMode_; internal System.Windows.Controls.CheckBox _ManualMode_;
...@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module { ...@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1018 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1072 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1; internal VIZ.FGOUT.Module.NDIView cam1;
...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module { ...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1109 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1163 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2; internal VIZ.FGOUT.Module.NDIView cam2;
...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module { ...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 1124 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 1178 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3; internal VIZ.FGOUT.Module.NDIView cam3;
...@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module { ...@@ -140,7 +140,7 @@ namespace VIZ.FGOUT.Module {
case 2: case 2:
this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target)); this._AutoMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 210 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 236 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick); this._AutoMode_.Click += new System.Windows.RoutedEventHandler(this.AutoMode_OnClick);
#line default #line default
...@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module { ...@@ -149,7 +149,7 @@ namespace VIZ.FGOUT.Module {
case 3: case 3:
this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target)); this._ManualMode_ = ((System.Windows.Controls.CheckBox)(target));
#line 221 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 249 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick); this._ManualMode_.Click += new System.Windows.RoutedEventHandler(this.ManualMode_OnClick);
#line default #line default
......
This source diff could not be displayed because it is too large. You can view the blob instead.
2024-03-19 10:45:56,876 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 10:31:49,446 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-19 10:45:56,985 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 10:31:51,247 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-19 10:45:57,159 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:A 2024-03-20 10:43:24,832 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 10:46:11,184 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 10:43:26,591 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 10:46:11,310 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + 2024-03-20 10:48:12,639 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 10:46:11,501 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + Alt + A 2024-03-20 10:48:13,839 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 15:50:03,756 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 10:48:15,008 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 15:50:09,558 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 10:48:16,159 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 15:50:10,205 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 10:48:16,789 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 15:50:12,587 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 10:48:17,983 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 15:50:13,227 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 10:48:19,186 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 15:53:22,777 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:13:41,687 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 15:54:35,542 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:13:44,665 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 15:57:20,079 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:13:46,365 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 15:57:39,931 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:13:48,112 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 15:57:40,260 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:13:50,592 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 15:58:43,362 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:13:52,433 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 16:02:22,234 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:13:53,773 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_end","timecode":0}
2024-03-19 16:26:38,959 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:13:55,056 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 16:26:40,326 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D6 2024-03-20 14:13:56,124 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_end","timecode":0}
2024-03-19 16:26:40,541 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D7 2024-03-20 14:13:57,091 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 16:26:42,156 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:14:01,319 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:26:42,295 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:14:03,644 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:26:42,648 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:14:05,398 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:26:43,932 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D5 2024-03-20 14:14:07,176 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:26:45,170 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 14:14:12,890 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:26:45,939 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:D3 2024-03-20 14:24:10,837 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:26:52,190 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:24:17,479 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:26:56,877 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:24:19,868 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:29:21,314 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"signal":"auto_Place","start":[],"end":[],"ignore":[],"timecode":0} 2024-03-20 14:24:21,088 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:30:09,035 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:24:22,843 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:37:11,419 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:24:24,533 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:37:12,629 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:24:25,716 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:37:21,094 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:24:26,885 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:37:24,604 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:24:28,235 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:38:29,897 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:24:59,426 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:38:29,902 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:25:01,755 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:38:31,147 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:02,954 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:38:31,148 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:04,782 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:48:14,963 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:10,436 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:48:14,965 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:11,316 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_start","timecode":0}
2024-03-19 16:48:21,157 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:25:12,626 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"matt_end","timecode":0}
2024-03-19 16:48:21,163 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:25:22,091 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"signal":"auto_Place","start":[],"end":[],"ignore":[],"timecode":0}
2024-03-19 16:48:21,741 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:29,953 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:48:21,741 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:31,214 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:48:23,452 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:25:32,813 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:48:23,452 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 14:25:34,571 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:48:24,075 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:35,741 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:48:24,076 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 14:25:36,878 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 16:48:26,428 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 16:23:38,493 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-03-19 16:48:26,433 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 16:31:16,898 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Left
2024-03-19 16:48:32,554 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 17:06:20,268 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 16:48:36,935 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键: 2024-03-20 17:06:21,477 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"manual","signal":"detect","timecode":0}
2024-03-19 17:57:06,511 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1} 2024-03-20 17:06:24,865 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"mode":"auto","signal":"detect","timecode":0}
2024-03-19 17:57:09,458 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0} 2024-03-20 17:06:33,506 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-20 17:06:36,383 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-20 17:06:54,633 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-20 17:06:58,686 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-03-20 17:07:00,531 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-03-20 17:07:01,804 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
using log4net; using log4net;
using System; using System;
using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
......
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