Commit 3e92d33b by 鲁志-悦动

修复出点框残留的问题 And “保留最高点”不可用时置灰 And 音视频发来的消息弹窗后结束Replay And 修复双人10米跳水,先选入点再选出点点击播放提示“没有获取到入点跟踪框信息”的缺陷

parent efb9c1c3
......@@ -51,14 +51,14 @@
<sys:String x:Key="VideoInput">VideoInput</sys:String>
<sys:String x:Key="SourceVideoInput">SourceVideoInput</sys:String>
<sys:String x:Key="ParameterSettings">ParameterSetting</sys:String>
<sys:String x:Key="AlgorithmParameter">AlgorithmParameter</sys:String>
<sys:String x:Key="AlgorithmParameter">AlgParam</sys:String>
<sys:String x:Key="Match">Match</sys:String>
<sys:String x:Key="Tips">Tips</sys:String>
<sys:String x:Key="EndingFigureNumber">Ending figure number</sys:String>
<sys:String x:Key="IntervalFrame">Interval frame</sys:String>
<sys:String x:Key="IntervalPixel">Interval pixel</sys:String>
<sys:String x:Key="RemoveOutPointPixel">Remove out point pixel</sys:String>
<sys:String x:Key="KeepHighest">Keep highest</sys:String>
<sys:String x:Key="IntervalFrame">IntFram</sys:String>
<sys:String x:Key="IntervalPixel">IntPixel</sys:String>
<sys:String x:Key="RemoveOutPointPixel">OutPixel</sys:String>
<sys:String x:Key="KeepHighest">Highest</sys:String>
<sys:String x:Key="DetectZoneX">Detect zone X</sys:String>
<sys:String x:Key="DetectZoneY">Detect zone Y</sys:String>
<sys:String x:Key="TrackingZone">Tracking zone</sys:String>
......
......@@ -3,6 +3,7 @@
<Style x:Key="CheckBox_Setting" TargetType="CheckBox">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Height" Value="20" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="CheckBox">
......@@ -39,10 +40,13 @@
<Setter TargetName="border" Property="Background" Value="#ffffc000" />
<Setter TargetName="img" Property="Visibility" Value="Visible" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Gray" />
<Setter TargetName="border" Property="BorderBrush" Value="Gray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
\ No newline at end of file
......@@ -955,7 +955,7 @@
Foreground="White"
Text="{DynamicResource IntervalFrame}" />
<TextBox
Width="60"
Width="57"
InputMethod.IsInputMethodEnabled="False"
PreviewTextInput="OnPreviewTextInputCommon"
Style="{StaticResource TextBoxStyle}"
......@@ -983,7 +983,7 @@
Foreground="White"
Text="{DynamicResource IntervalPixel}" />
<TextBox
Width="60"
Width="57"
InputMethod.IsInputMethodEnabled="False"
PreviewTextInput="OnPreviewTextInputCommon"
Style="{StaticResource TextBoxStyle}"
......@@ -1011,7 +1011,7 @@
Foreground="White"
Text="{DynamicResource RemoveOutPointPixel}" />
<TextBox
Width="60"
Width="57"
InputMethod.IsInputMethodEnabled="False"
PreviewTextInput="OnPreviewTextInputCommon"
Style="{StaticResource TextBoxStyle}"
......@@ -1033,7 +1033,6 @@
Command="{Binding KeepHighestCommand}"
Content="{DynamicResource KeepHighest}"
FontSize="14"
Foreground="White"
IsChecked="{Binding Path=IsKeepHighest, Mode=TwoWay}"
IsEnabled="{Binding KeepHighestIsEnabled}"
Style="{StaticResource CheckBox_Setting}" />
......@@ -1044,7 +1043,6 @@
Command="{Binding BigModelCommand}"
Content="{DynamicResource LargeModel}"
FontSize="14"
Foreground="White"
IsChecked="{Binding Path=IsBigModel, Mode=TwoWay}"
Style="{StaticResource CheckBox_Setting}" />
......
......@@ -278,6 +278,8 @@ namespace VIZ.FGOUT.Module
WPFHelper.BeginInvoke(() =>
{
MessageBoxEx.ShowDialog(message);
//关闭Replay
ReplayStop();
});
}
}
......
......@@ -464,11 +464,11 @@ namespace VIZ.FGOUT.Module
if (saveOutPointInfos.Count == 2)
{
saveOutPointInfos[0] = saveOutPointInfos[1];
saveOutPointInfos[1] = saveInfo;
saveOutPointInfos[1] = saveOutPointInfo;
}
else
{
saveOutPointInfos.Add(saveInfo);
saveOutPointInfos.Add(saveOutPointInfo);
}
}
}
......
......@@ -295,6 +295,9 @@ namespace VIZ.FGOUT.Module
//记录标红框时入点时间戳
_RecordStartTime = saveInfo.TimeCode;
_twoInfos.Add(saveInfo);
//清除点选跟踪框的数据
NDIView.saveInfos = new List<TrackingBoxInfo>();
}
else if (view.vm.IsEndValue)
{
......@@ -303,12 +306,16 @@ namespace VIZ.FGOUT.Module
//记录标绿框时入点时间戳
_RecordEndTime = saveInfo.TimeCode;
_twoOutPointInfos.Add(saveInfo);
}
//清除点选跟踪框的数据
NDIView.saveInfos = new List<TrackingBoxInfo>();
NDIView.saveOutPointInfos = new List<TrackingBoxInfo>();
}
}
////清除点选跟踪框的数据
//NDIView.saveInfos = new List<TrackingBoxInfo>();
//NDIView.saveOutPointInfos = new List<TrackingBoxInfo>();
}
else
{
//把选中框的信息也加到这个集合里
......@@ -321,6 +328,9 @@ namespace VIZ.FGOUT.Module
//记录标红框时入点时间戳
_RecordStartTime = info2.TimeCode;
_singleInfo = info2;
//清除点选跟踪框的数据
NDIView.saveInfo = new TrackingBoxInfo();
}
else if (view.vm.IsEndValue)
{
......@@ -329,12 +339,16 @@ namespace VIZ.FGOUT.Module
//记录标绿框时出点时间戳
_RecordEndTime = info2.TimeCode;
_singleOutPointInfo = info2;
}
}
//清除点选跟踪框的数据
NDIView.saveInfo = new TrackingBoxInfo();
NDIView.saveOutPointInfo = new TrackingBoxInfo();
}
}
////清除点选跟踪框的数据
//NDIView.saveInfo = new TrackingBoxInfo();
//NDIView.saveOutPointInfo = new TrackingBoxInfo();
//清除拖框的数据
NDIView.rectsReplay.Clear();
NDIView.rectsOutReplay.Clear();
......@@ -386,7 +400,7 @@ namespace VIZ.FGOUT.Module
}
foreach (var saveOutInfo in NDIView.saveOutPointInfos)
{
//更新绿色点中框
//更新绿色点中框
if (saveOutInfo.SrcRect.Left > 0)
{
saveOutInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR_GREEN;
......
......@@ -313,6 +313,7 @@ namespace VIZ.FGOUT.Module
#region 算法识别到人的情况下
//入点
if (_twoInfos.Count > 0)
{
if (InPointIsMoved()) return;
......@@ -326,6 +327,7 @@ namespace VIZ.FGOUT.Module
isInPoint = true;
}
//出点
if (_twoOutPointInfos.Count > 0)
{
if (OutPointIsMoved()) return;
......@@ -406,7 +408,9 @@ namespace VIZ.FGOUT.Module
ndiView.canvas1.Children.Clear();
//清除跟踪框的数据
NDIView.saveInfo = new TrackingBoxInfo();
NDIView.saveOutPointInfo = new TrackingBoxInfo();
NDIView.saveInfos = new List<TrackingBoxInfo>();
NDIView.saveOutPointInfos = new List<TrackingBoxInfo>();
_singleInfo = new TrackingBoxInfo();
_singleOutPointInfo = new TrackingBoxInfo();
_twoInfos = new List<TrackingBoxInfo>();
......@@ -549,7 +553,9 @@ namespace VIZ.FGOUT.Module
//nDIView.saveInfo = new TrackingBoxInfo();
//nDIView.saveInfos = new List<TrackingBoxInfo>();
NDIView.saveInfo = new TrackingBoxInfo();
NDIView.saveOutPointInfo = new TrackingBoxInfo();
NDIView.saveInfos = new List<TrackingBoxInfo>();
NDIView.saveOutPointInfos = new List<TrackingBoxInfo>();
_singleInfo = new TrackingBoxInfo();
_singleOutPointInfo = new TrackingBoxInfo();
_twoInfos = new List<TrackingBoxInfo>();
......@@ -557,245 +563,246 @@ namespace VIZ.FGOUT.Module
}
}
private void ReplayMethod()
{
//在Replay状态下
Queue<MatExtend> buffer = _frameBuffer.GetFrames();
//只生效一次
if (IsReplayStarted)
{
IsReplayStarted = false;
//private void ReplayMethod()
//{
// //在Replay状态下
if (buffer.Count > 0)
{
foreach (var matExtend in buffer)
{
//遍历队列集合,先遍历到入点帧
if (matExtend.TimeStamp == StartTime)
{
SliderStartValue = index;
}
else if (matExtend.TimeStamp == EndTime)
{
break;
}
index++;
}
SliderEndValue = index;
}
}
//如果是Start滑块在动
else if (IsStartValue)
{
SliderStartValue = index = SliderValue;
}
//如果是End滑块在动
else if (IsEndValue)
{
SliderEndValue = index = SliderValue;
}
// Queue<MatExtend> buffer = _frameBuffer.GetFrames();
// //只生效一次
// if (IsReplayStarted)
// {
// IsReplayStarted = false;
#region 公共代码
// if (buffer.Count > 0)
// {
// foreach (var matExtend in buffer)
// {
// //遍历队列集合,先遍历到入点帧
// if (matExtend.TimeStamp == StartTime)
// {
// SliderStartValue = index;
// }
// else if (matExtend.TimeStamp == EndTime)
// {
// break;
// }
// index++;
// }
// SliderEndValue = index;
// }
// }
// //如果是Start滑块在动
// else if (IsStartValue)
// {
// SliderStartValue = index = SliderValue;
// }
// //如果是End滑块在动
// else if (IsEndValue)
// {
// SliderEndValue = index = SliderValue;
// }
if (index >= (50 * STREAM_CACHEED_TIME)) index = (50 * STREAM_CACHEED_TIME - 1);
if ((buffer.Count - 1) >= index && index >= 0)
{
var dse = buffer.ElementAt(index);
var lowResolutionData = new byte[dse.Mat.Width * dse.Mat.Height * 4];
var newLength = lowResolutionData.Length;
Marshal.Copy(dse.Mat.Data, lowResolutionData, 0, newLength);
var dsExtend = new DataStreamExtend()
{
DataStream = new DataStream((int)newLength, true, true),
Width = dse.Mat.Width,
Height = dse.Mat.Height,
Length = newLength,
TimeStamp = ReplayTimeStamp = dse.TimeStamp
};
dsExtend.DataStream.Write(lowResolutionData, 0, newLength);
dsExtend.DataStream.Position = 0;
// #region 公共代码
//遍历跟踪框队列
Queue<TrackingBoxInfo> infoBuffers = _trackingBoxInfoBuffer.GetInfos();
Queue<TrackingBoxInfo> infoBBuffers = _trackingBBoxInfoBuffer.GetInfos();
_cam3Infos = new List<TrackingBoxInfo>();
_cam3BInfos = new List<TrackingBoxInfo>();
//跟踪框全显示
if (infoBuffers.Count > 0)
{
foreach (var info in infoBuffers)
{
if (info == null) continue;
if (info.TimeCode == dse.TimeStamp)
_cam3Infos.Add(info);
}
}
//匹配的时候只匹配BBox下的
if (infoBBuffers.Count > 0)
{
foreach (var info in infoBBuffers)
{
if (info == null) continue;
if (info.TimeCode == dse.TimeStamp)
_cam3BInfos.Add(info);
}
// if (index >= (50 * STREAM_CACHEED_TIME)) index = (50 * STREAM_CACHEED_TIME - 1);
// if ((buffer.Count - 1) >= index && index >= 0)
// {
// var dse = buffer.ElementAt(index);
// var lowResolutionData = new byte[dse.Mat.Width * dse.Mat.Height * 4];
// var newLength = lowResolutionData.Length;
// Marshal.Copy(dse.Mat.Data, lowResolutionData, 0, newLength);
// var dsExtend = new DataStreamExtend()
// {
// DataStream = new DataStream((int)newLength, true, true),
// Width = dse.Mat.Width,
// Height = dse.Mat.Height,
// Length = newLength,
// TimeStamp = ReplayTimeStamp = dse.TimeStamp
// };
// dsExtend.DataStream.Write(lowResolutionData, 0, newLength);
// dsExtend.DataStream.Position = 0;
// //遍历跟踪框队列
// Queue<TrackingBoxInfo> infoBuffers = _trackingBoxInfoBuffer.GetInfos();
// Queue<TrackingBoxInfo> infoBBuffers = _trackingBBoxInfoBuffer.GetInfos();
// _cam3Infos = new List<TrackingBoxInfo>();
// _cam3BInfos = new List<TrackingBoxInfo>();
// //跟踪框全显示
// if (infoBuffers.Count > 0)
// {
// foreach (var info in infoBuffers)
// {
// if (info == null) continue;
// if (info.TimeCode == dse.TimeStamp)
// _cam3Infos.Add(info);
// }
// }
// //匹配的时候只匹配BBox下的
// if (infoBBuffers.Count > 0)
// {
// foreach (var info in infoBBuffers)
// {
// if (info == null) continue;
// if (info.TimeCode == dse.TimeStamp)
// _cam3BInfos.Add(info);
// }
#region 算法track到人的情况下跟踪框标红
// #region 算法track到人的情况下跟踪框标红
if (_cam3BInfos.Count > 0)
//if (_cam3BInfos.Count > 0 && view.vm.IsStartValue)
{
var info2 = _cam3BInfos[0];
if (info2.BboxType != null && info2.BboxType.Equals(AlgorithmPackageSignal.track))
{
var gameName = ApplicationDomainEx.LiteDbContext.ViewConfig
.FindOne(p => p.ViewKey == NDIViewKeys.CAM_1).GameName;
//当双人3m跳水,双人10m跳水,双人速度攀岩时,保存2个入点框
if (gameName.Equals(SportsProjectCodes.SS) ||
gameName.Equals(SportsProjectCodes.ST) ||
gameName.Equals(SportsProjectCodes.SP))
{
if (IsStartValue)
{
_twoInfos = new List<TrackingBoxInfo>();
}
else if (IsEndValue)
{
_twoOutPointInfos = new List<TrackingBoxInfo>();
}
// if (_cam3BInfos.Count > 0)
// //if (_cam3BInfos.Count > 0 && view.vm.IsStartValue)
// {
// var info2 = _cam3BInfos[0];
// if (info2.BboxType != null && info2.BboxType.Equals(AlgorithmPackageSignal.track))
// {
// var gameName = ApplicationDomainEx.LiteDbContext.ViewConfig
// .FindOne(p => p.ViewKey == NDIViewKeys.CAM_1).GameName;
// //当双人3m跳水,双人10m跳水,双人速度攀岩时,保存2个入点框
// if (gameName.Equals(SportsProjectCodes.SS) ||
// gameName.Equals(SportsProjectCodes.ST) ||
// gameName.Equals(SportsProjectCodes.SP))
// {
// if (IsStartValue)
// {
// _twoInfos = new List<TrackingBoxInfo>();
// }
// else if (IsEndValue)
// {
// _twoOutPointInfos = new List<TrackingBoxInfo>();
// }
foreach (var saveInfo in _cam3BInfos)
{
//把选中框的信息也加到这个集合里
_cam3Infos.Add(saveInfo);
// foreach (var saveInfo in _cam3BInfos)
// {
// //把选中框的信息也加到这个集合里
// _cam3Infos.Add(saveInfo);
if (IsStartValue)
{
//更新红色点中框
saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
//记录标红框时入点时间戳
_RecordStartTime = saveInfo.TimeCode;
_twoInfos.Add(saveInfo);
}
else if (IsEndValue)
{
//更新绿色点中框
saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR_GREEN;
//记录标绿框时入点时间戳
_RecordEndTime = saveInfo.TimeCode;
_twoOutPointInfos.Add(saveInfo);
}
// if (IsStartValue)
// {
// //更新红色点中框
// saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
// //记录标红框时入点时间戳
// _RecordStartTime = saveInfo.TimeCode;
// _twoInfos.Add(saveInfo);
// }
// else if (IsEndValue)
// {
// //更新绿色点中框
// saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR_GREEN;
// //记录标绿框时入点时间戳
// _RecordEndTime = saveInfo.TimeCode;
// _twoOutPointInfos.Add(saveInfo);
// }
//清除点选跟踪框的数据
NDIView.saveInfos = new List<TrackingBoxInfo>();
}
}
else
{
//把选中框的信息也加到这个集合里
_cam3Infos.Add(info2);
// //清除点选跟踪框的数据
// NDIView.saveInfos = new List<TrackingBoxInfo>();
// }
// }
// else
// {
// //把选中框的信息也加到这个集合里
// _cam3Infos.Add(info2);
if (IsStartValue)
{
//单人更新红色点中框
info2.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
//记录标红框时入点时间戳
_RecordStartTime = info2.TimeCode;
_singleInfo = info2;
}
else if (IsEndValue)
{
//单人更新绿色点中框
info2.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR_GREEN;
//记录标绿框时出点时间戳
_RecordEndTime = info2.TimeCode;
_singleOutPointInfo = info2;
}
}
// if (IsStartValue)
// {
// //单人更新红色点中框
// info2.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
// //记录标红框时入点时间戳
// _RecordStartTime = info2.TimeCode;
// _singleInfo = info2;
// }
// else if (IsEndValue)
// {
// //单人更新绿色点中框
// info2.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR_GREEN;
// //记录标绿框时出点时间戳
// _RecordEndTime = info2.TimeCode;
// _singleOutPointInfo = info2;
// }
// }
//清除点选跟踪框的数据
NDIView.saveInfo = new TrackingBoxInfo();
//清除拖框的数据
NDIView.rectsReplay.Clear();
// //清除点选跟踪框的数据
// NDIView.saveInfo = new TrackingBoxInfo();
// NDIView.saveOutPointInfo = new TrackingBoxInfo();
// //清除拖框的数据
// NDIView.rectsReplay.Clear();
}
}
// }
// }
#endregion
}
// #endregion
// }
//如果是Start滑块在动
if (IsStartValue)
StartTime = dse.TimeStamp;
else if (IsEndValue)
EndTime = dse.TimeStamp;
// //如果是Start滑块在动
// if (IsStartValue)
// StartTime = dse.TimeStamp;
// else if (IsEndValue)
// EndTime = dse.TimeStamp;
// Replay更新画面
WPFHelper.BeginInvoke(() =>
{
try
{
var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, NDIViewKeys.cam3);
if (view3 != null)
{
// 更新视频流
view3.video.UpdateVideoFrame(dsExtend, true);
// 更新视频控件跟踪框信息,现在_cam3BInfos里是缓存的跟踪框信息
if (_cam3BInfos.Count > 0)
{
_cam3StaticInfos = _cam3BInfos;
var gameName = ApplicationDomainEx.LiteDbContext.ViewConfig
.FindOne(p => p.ViewKey == NDIViewKeys.CAM_1).GameName;
//当双人3m跳水,双人10m跳水,双人速度攀岩时,保存2个入点框
if (gameName.Equals(SportsProjectCodes.SS) ||
gameName.Equals(SportsProjectCodes.ST) ||
gameName.Equals(SportsProjectCodes.SP))
{
foreach (var saveInfo in NDIView.saveInfos)
{
//更新红色点中框
if (saveInfo.SrcRect.Left > 0)
{
saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
//把选中框的信息也加到这个集合里
_cam3Infos.Add(saveInfo);
//记录标红框时入点时间戳
_RecordStartTime = saveInfo.TimeCode;
}
}
}
else
{
//单人
var info = NDIView.saveInfo;
//更新红色点中框
if (info.SrcRect.Left > 0)
{
info.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
//把选中框的信息也加到这个集合里
_cam3Infos.Add(info);
//记录标红框时入点时间戳
_RecordStartTime = info.TimeCode;
}
}
//再更新跟踪框信息
view3.video.UpdateTrackingBox(_cam3Infos);
}
}
}
catch (Exception ex)
{
log.Error(ex);
}
});
}
// // Replay更新画面
// WPFHelper.BeginInvoke(() =>
// {
// try
// {
// var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, NDIViewKeys.cam3);
// if (view3 != null)
// {
// // 更新视频流
// view3.video.UpdateVideoFrame(dsExtend, true);
// // 更新视频控件跟踪框信息,现在_cam3BInfos里是缓存的跟踪框信息
// if (_cam3BInfos.Count > 0)
// {
// _cam3StaticInfos = _cam3BInfos;
// var gameName = ApplicationDomainEx.LiteDbContext.ViewConfig
// .FindOne(p => p.ViewKey == NDIViewKeys.CAM_1).GameName;
// //当双人3m跳水,双人10m跳水,双人速度攀岩时,保存2个入点框
// if (gameName.Equals(SportsProjectCodes.SS) ||
// gameName.Equals(SportsProjectCodes.ST) ||
// gameName.Equals(SportsProjectCodes.SP))
// {
// foreach (var saveInfo in NDIView.saveInfos)
// {
// //更新红色点中框
// if (saveInfo.SrcRect.Left > 0)
// {
// saveInfo.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
// //把选中框的信息也加到这个集合里
// _cam3Infos.Add(saveInfo);
// //记录标红框时入点时间戳
// _RecordStartTime = saveInfo.TimeCode;
// }
// }
// }
// else
// {
// //单人
// var info = NDIView.saveInfo;
// //更新红色点中框
// if (info.SrcRect.Left > 0)
// {
// info.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
// //把选中框的信息也加到这个集合里
// _cam3Infos.Add(info);
// //记录标红框时入点时间戳
// _RecordStartTime = info.TimeCode;
// }
// }
// //再更新跟踪框信息
// view3.video.UpdateTrackingBox(_cam3Infos);
// }
// }
// }
// catch (Exception ex)
// {
// log.Error(ex);
// }
// });
// }
IsStartValue = false;
IsEndValue = false;
// IsStartValue = false;
// IsEndValue = false;
#endregion
}
// #endregion
//}
public bool IsDrawStartPlace;
/// <summary>
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "27D273E06DFA15F6D27EB8C64BF9DA66E94CD4CD54532517742A535F99BE11A0"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A25B7FBA0B84B088564252FE23AF3AAB986E09C2E387816A9C3A8CB1206B638C"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1436 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1434 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1621 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1619 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1636 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1634 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "27D273E06DFA15F6D27EB8C64BF9DA66E94CD4CD54532517742A535F99BE11A0"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A25B7FBA0B84B088564252FE23AF3AAB986E09C2E387816A9C3A8CB1206B638C"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1436 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1434 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1621 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1619 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 1636 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 1634 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......

C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;;
......
......@@ -10,10 +10,10 @@ none
false
TRACE
9-721875057
91711917753
3-630027162
19468308608
3-1719726047
20-2028247964
Path\ArrowPathResource.xaml;Style\Button\Button_MessageBox.xaml;Style\Button\Button_Normal.xaml;Style\Button\Button_WindowTop.xaml;Style\GridSplitter\GridSplitter_None.xaml;Style\ListBox\ListBox_None.xaml;Style\ScrollView\ScrollView_Default.xaml;Style\TextBox\TextBox_None.xaml;Themes\Generic.xaml;
False
......
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}

......@@ -10,11 +10,11 @@ none
false
TRACE
15-721109437
15488264905
121-1133520871
150-762123096
1212046750213
150-875198046
MessageBox\MessageBoxEx.xaml;MessageBox\MessageBoxExWindow.xaml;Themes\Generic.xaml;VideoControl\Control\VideoControl.xaml;Widgets\ColorPickButton\ColorPickButton.xaml;Widgets\ColorPickButton\ColorPickWindow.xaml;Widgets\GPIOPinTestControl\GPIOPinTestControl.xaml;Widgets\HotkeyBox\HotkeyBox.xaml;Widgets\IconButton\IconButton.xaml;Widgets\LabelValue\LabelValue.xaml;Widgets\NavigationControl\NavigationControl.xaml;Widgets\ResizeImageControl\ResizeImageControl.xaml;Widgets\ShowMessageControl\ShowMessageControl.xaml;Widgets\VideoTimeBar\VideoTimeBar.xaml;Widgets\ViewLoader\ViewLoader.xaml;
True
False
......@@ -10,11 +10,11 @@ none
false
TRACE
1-731644535
11882902973
212002329545
25-1969161261
212023628146
26917618797
Themes\Generic.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