Commit 9b7720cd by 王永辉

UE设置JSON组装

parent 2fa227f9
...@@ -17,7 +17,7 @@ namespace VIZ.FGOUT.Connection ...@@ -17,7 +17,7 @@ namespace VIZ.FGOUT.Connection
/// <summary> /// <summary>
/// 数据 /// 数据
/// </summary> /// </summary>
public VedioData data { get; set; } public VideoData data { get; set; }
} }
......
namespace VIZ.FGOUT.Connection.UDP.Clip.Signal.Send
{
public class UEEvent
{
public string UE_event { get; set; }
public Properties Properties { get; set; } = new Properties();
}
public class Properties
{
public ZoomSet ZoomSets { get; set; }= new ZoomSet();
}
public class ZoomSet
{
public string ZoomIn { get; set; } = "1";
}
}
using System.Collections.Generic;
namespace VIZ.FGOUT.Connection.UDP.Clip.Signal.Send
{
public class UEPackage
{
public UE_Presets UE_Presets { get; set; } = new UE_Presets();
}
public class UE_Presets
{
public StartSets StartSets { get; set; } = new StartSets();
}
public class StartSets
{
public string EventCode { get; set; } = "JT";
public int DualMode { get; set; } = 0;
public EnableStats EnableStats { get; set; } = new EnableStats();
public SplineSets SplineSets { get; set; } = new SplineSets();
public ZoomSets ZoomSets { get; set; } = new ZoomSets();
public Datas Datas { get; set; }= new Datas();
}
public class EnableStats
{
public int bEnableSpline { get; set; } = 1;
public int bShowHeight { get; set; } = 1;
public int bShowSpeed { get; set; } = 1;
public int bEnableZoom { get; set; } = 1;
}
public class SplineSets
{
public int bLineBehind { get; set; } = 0;
}
public class ZoomSets
{
public string ZoomEase { get; set; } = "SinusoidalInOut";
public string MoveEase { get; set; } = "SinusoidalInOut";
public int Scale { get; set; } = 50;
public double SafeScale { get; set; } = 0.9;
public double ZoomIn { get; set; } = 3;
public double ZoomOut { get; set; } = 3;
public double Move { get; set; } = 3;
public int bMovementOnlyX { get; set; } = 0;
public int MovementOnlyXPosition { get; set; } = 0;
public int bMovementOnlyY { get; set; } = 0;
public int MovementOnlyYPosition { get; set; } = 0;
}
public class Datas
{
public int bIsManualMode { get; set; } = 0;
public List<Position> Positions { get; set;} = new List<Position>();
}
public class Position
{
public string name { get; set; }
public int x { get; set; }
public int y { get; set; }
}
}
using System; namespace VIZ.FGOUT.Connection
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VIZ.FGOUT.Connection
{ {
public class VedioData public class VideoData
{ {
/// <summary> /// <summary>
/// 回退时间 /// 回退时间
/// </summary> /// </summary>
......
...@@ -100,7 +100,9 @@ ...@@ -100,7 +100,9 @@
<Compile Include="UDP\Clip\Sender\ClipSender.cs" /> <Compile Include="UDP\Clip\Sender\ClipSender.cs" />
<Compile Include="UDP\Clip\Signal\Send\ClipPackage__crop_roi.cs" /> <Compile Include="UDP\Clip\Signal\Send\ClipPackage__crop_roi.cs" />
<Compile Include="UDP\Clip\Signal\Send\ReplayPackage.cs" /> <Compile Include="UDP\Clip\Signal\Send\ReplayPackage.cs" />
<Compile Include="UDP\Clip\Signal\Send\VedioData.cs" /> <Compile Include="UDP\Clip\Signal\Send\UEEvent.cs" />
<Compile Include="UDP\Clip\Signal\Send\UEPackage.cs" />
<Compile Include="UDP\Clip\Signal\Send\VideoData.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\VIZ.Framework\VIZ.Framework.Connection\VIZ.Framework.Connection.csproj"> <ProjectReference Include="..\..\VIZ.Framework\VIZ.Framework.Connection\VIZ.Framework.Connection.csproj">
......
1f48619ef5384f47a6181b1bfde7007b2922160c 954a8f953ea0c9e58cbd7a4e88ffc6456f42311e
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
</Setter> </Setter>
</Style> </Style>
<Style x:Key="ButtonStyle" TargetType="Button"> <!--<Style x:Key="ButtonStyle" TargetType="Button">
<Setter Property="FocusVisualStyle" Value="{x:Null}" /> <Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Foreground" Value="White" /> <Setter Property="Foreground" Value="White" />
<Setter Property="FontSize" Value="16" /> <Setter Property="FontSize" Value="16" />
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
</Grid> </Grid>
<ControlTemplate.Triggers> <ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True"> <Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="border" Property="Background" Value="#378CFF " /> <Setter TargetName="border" Property="Background" Value="#378CFF" />
</Trigger> </Trigger>
<Trigger Property="IsEnabled" Value="False"> <Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.7" /> <Setter Property="Opacity" Value="0.7" />
...@@ -139,6 +139,62 @@ ...@@ -139,6 +139,62 @@
</ControlTemplate> </ControlTemplate>
</Setter.Value> </Setter.Value>
</Setter> </Setter>
</Style>-->
<Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
<!--<Setter Property="FontFamily" Value="{StaticResource SysFontFamily}" />-->
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Foreground" Value="White" />
<Setter Property="FontSize" Value="14" />
<Setter Property="Width" Value="110" />
<Setter Property="Height" Value="37" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Background" Value="#626669" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<!--<Grid.Effect>
<DropShadowEffect
Direction="{StaticResource DropShadowEffectDirection}"
Opacity="{StaticResource SysOpacity}"
ShadowDepth="{DynamicResource ShadowDepth}"
Color="{StaticResource DropShadowEffectColor}" />
</Grid.Effect>-->
<Border
x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="6"
SnapsToDevicePixels="true">
<ContentPresenter
x:Name="contentPresenter"
Margin="{TemplateBinding Padding}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
Focusable="False"
RecognizesAccessKey="True"
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#378CFF" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#378CFF" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Gray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style> </Style>
</ResourceDictionary> </ResourceDictionary>
\ No newline at end of file
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="ToggleButton_Setting" TargetType="ToggleButton"> <Style x:Key="ToggleButton_Setting" TargetType="ToggleButton">
<Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter> <Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template"> <Setter Property="Template">
<Setter.Value> <Setter.Value>
<ControlTemplate TargetType="ToggleButton"> <ControlTemplate TargetType="ToggleButton">
<Border x:Name="bd" BorderBrush="#ff3d4758" Background="#ff0e131e" BorderThickness="0,0,0,1"> <Border
x:Name="bd"
Background="#ff0e131e"
BorderBrush="#ff3d4758"
BorderThickness="0,0,0,1">
<Grid> <Grid>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition> <ColumnDefinition Width="*" />
<ColumnDefinition Width="40"></ColumnDefinition> <ColumnDefinition Width="40" />
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Left"></ContentPresenter> <ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" />
<Image Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" <Image
Width="14" Height="14" Grid.Column="1"
Source="/VIZ.FGOUT.Module.Resource;component/Icons/down_32x32.png"></Image> Width="14"
Height="14"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Source="/VIZ.FGOUT.Module.Resource;component/Icons/down_32x32.png" />
</Grid> </Grid>
</Border> </Border>
</ControlTemplate> </ControlTemplate>
...@@ -23,24 +30,27 @@ ...@@ -23,24 +30,27 @@
</Setter> </Setter>
</Style> </Style>
<Style TargetType="ComboBoxItem" x:Key="ComboBoxItem_Setting"> <Style x:Key="ComboBoxItem_Setting" TargetType="ComboBoxItem">
<Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter> <Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="MinHeight" Value="50"></Setter> <Setter Property="MinHeight" Value="50" />
<Setter Property="Template"> <Setter Property="Template">
<Setter.Value> <Setter.Value>
<ControlTemplate TargetType="ComboBoxItem"> <ControlTemplate TargetType="ComboBoxItem">
<Border x:Name="bd" Background="Transparent"> <Border x:Name="bd" Background="Transparent">
<ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,10,0"></ContentPresenter> <ContentPresenter
Margin="10,0,10,0"
HorizontalAlignment="Left"
VerticalAlignment="Center" />
</Border> </Border>
<ControlTemplate.Triggers> <ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True"> <Trigger Property="IsMouseOver" Value="True">
<Trigger.Setters> <Trigger.Setters>
<Setter TargetName="bd" Property="Background" Value="#22ffffff"></Setter> <Setter TargetName="bd" Property="Background" Value="#22ffffff" />
</Trigger.Setters> </Trigger.Setters>
</Trigger> </Trigger>
<Trigger Property="IsSelected" Value="True"> <Trigger Property="IsSelected" Value="True">
<Trigger.Setters> <Trigger.Setters>
<Setter TargetName="bd" Property="Background" Value="#18ffffff"></Setter> <Setter TargetName="bd" Property="Background" Value="#18ffffff" />
</Trigger.Setters> </Trigger.Setters>
</Trigger> </Trigger>
</ControlTemplate.Triggers> </ControlTemplate.Triggers>
...@@ -49,22 +59,40 @@ ...@@ -49,22 +59,40 @@
</Setter> </Setter>
</Style> </Style>
<Style TargetType="ComboBox" x:Key="ComboBox_Setting"> <Style x:Key="ComboBox_Setting" TargetType="ComboBox">
<Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter> <Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Foreground" Value="White"></Setter> <Setter Property="Foreground" Value="White" />
<Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem_Setting}"></Setter> <Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem_Setting}" />
<Setter Property="Template"> <Setter Property="Template">
<Setter.Value> <Setter.Value>
<ControlTemplate TargetType="ComboBox"> <ControlTemplate TargetType="ComboBox">
<Grid x:Name="templateRoot" SnapsToDevicePixels="true"> <Grid x:Name="templateRoot" SnapsToDevicePixels="true">
<ToggleButton x:Name="toggleButton" Grid.ColumnSpan="2" <ToggleButton
IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" x:Name="toggleButton"
Style="{StaticResource ToggleButton_Setting}"/> Grid.ColumnSpan="2"
<ContentPresenter Content="{TemplateBinding SelectionBoxItem}" ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}" IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
VerticalAlignment="Center" HorizontalAlignment="Left" Margin="12,0,10,0"></ContentPresenter> Style="{StaticResource ToggleButton_Setting}" />
<Popup x:Name="PART_Popup" AllowsTransparency="true" Grid.ColumnSpan="2" IsOpen="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" Margin="1" Placement="Bottom" PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}"> <ContentPresenter
<Border x:Name="dropDownBorder" Background="#ff151c2c" BorderBrush="#ff3d4758" BorderThickness="1,0,1,1" Margin="12,0,10,0"
MinWidth="{Binding ActualWidth, ElementName=templateRoot}" MaxHeight="{TemplateBinding MaxDropDownHeight}"> HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{TemplateBinding SelectionBoxItem}"
ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}" />
<Popup
x:Name="PART_Popup"
Grid.ColumnSpan="2"
Margin="1"
AllowsTransparency="true"
IsOpen="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
Placement="Bottom"
PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}">
<Border
x:Name="dropDownBorder"
MinWidth="{Binding ActualWidth, ElementName=templateRoot}"
MaxHeight="{TemplateBinding MaxDropDownHeight}"
Background="#ff151c2c"
BorderBrush="#ff3d4758"
BorderThickness="1,0,1,1">
<ScrollViewer x:Name="DropDownScrollViewer"> <ScrollViewer x:Name="DropDownScrollViewer">
<Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled"> <Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled">
<ItemsPresenter x:Name="ItemsPresenter" KeyboardNavigation.DirectionalNavigation="Contained" /> <ItemsPresenter x:Name="ItemsPresenter" KeyboardNavigation.DirectionalNavigation="Contained" />
...@@ -78,4 +106,87 @@ ...@@ -78,4 +106,87 @@
</Setter> </Setter>
</Style> </Style>
<Style x:Key="ToggleButtonStyle" TargetType="ToggleButton">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToggleButton">
<Border
x:Name="bd"
Background="#ff0e131e"
BorderBrush="#ff3d4758"
BorderThickness="0,0,0,1">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="40" />
</Grid.ColumnDefinitions>
<ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" />
<Image
Grid.Column="1"
Width="14"
Height="14"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Source="/VIZ.FGOUT.Module.Resource;component/Icons/down_24x24.png" />
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="ComboBoxStyle" TargetType="ComboBox">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Height" Value="30" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="Width" Value="150" />
<Setter Property="Background" Value="#282A2C" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="ItemContainerStyle" Value="{StaticResource ComboBoxItem_Setting}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ComboBox">
<Grid x:Name="templateRoot" SnapsToDevicePixels="true">
<ToggleButton
x:Name="toggleButton"
Grid.ColumnSpan="2"
IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
Style="{StaticResource ToggleButtonStyle}" />
<ContentPresenter
Margin="12,0"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{TemplateBinding SelectionBoxItem}"
ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}" />
<Popup
x:Name="PART_Popup"
Grid.ColumnSpan="2"
Margin="1"
AllowsTransparency="true"
IsOpen="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
Placement="Bottom"
PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}">
<Border
x:Name="dropDownBorder"
MinWidth="{Binding ActualWidth, ElementName=templateRoot}"
MaxHeight="{TemplateBinding MaxDropDownHeight}"
Background="#ff151c2c"
BorderBrush="#ff3d4758"
BorderThickness="1,0,1,1">
<ScrollViewer x:Name="DropDownScrollViewer">
<Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled">
<ItemsPresenter x:Name="ItemsPresenter" KeyboardNavigation.DirectionalNavigation="Contained" />
</Grid>
</ScrollViewer>
</Border>
</Popup>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary> </ResourceDictionary>
\ No newline at end of file
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="TextBox_Setting" TargetType="{x:Type TextBox}"> <Style x:Key="TextBox_Setting" TargetType="{x:Type TextBox}">
<Setter Property="FocusVisualStyle" Value="{x:Null}"/> <Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Background" Value="#ff0e131e"/> <Setter Property="Background" Value="#ff0e131e" />
<Setter Property="BorderBrush" Value="#ff3d4758"/> <Setter Property="BorderBrush" Value="#ff3d4758" />
<Setter Property="Foreground" Value="White"/> <Setter Property="Foreground" Value="White" />
<Setter Property="FontSize" Value="16"></Setter> <Setter Property="FontSize" Value="16" />
<Setter Property="BorderThickness" Value="0,0,0,1"/> <Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="VerticalContentAlignment" Value="Center"></Setter> <Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="Padding" Value="5,0,5,0"></Setter> <Setter Property="Padding" Value="5,0,5,0" />
<Setter Property="AcceptsReturn" Value="False"></Setter> <Setter Property="AcceptsReturn" Value="False" />
<Setter Property="KeyboardNavigation.TabNavigation" Value="None"/> <Setter Property="KeyboardNavigation.TabNavigation" Value="None" />
<Setter Property="HorizontalContentAlignment" Value="Left"/> <Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="AllowDrop" Value="true"/> <Setter Property="AllowDrop" Value="true" />
<Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/> <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst" />
<Setter Property="Stylus.IsFlicksEnabled" Value="False"/> <Setter Property="Stylus.IsFlicksEnabled" Value="False" />
<Setter Property="Template"> <Setter Property="Template">
<Setter.Value> <Setter.Value>
<ControlTemplate TargetType="{x:Type TextBox}"> <ControlTemplate TargetType="{x:Type TextBox}">
<Border x:Name="border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" SnapsToDevicePixels="True"> <Border
<ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden" Margin="{TemplateBinding Padding}"/> x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
SnapsToDevicePixels="True">
<ScrollViewer
x:Name="PART_ContentHost"
Margin="{TemplateBinding Padding}"
Focusable="false"
HorizontalScrollBarVisibility="Hidden"
VerticalScrollBarVisibility="Hidden" />
</Border> </Border>
<ControlTemplate.Triggers> <ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="false"> <Trigger Property="IsEnabled" Value="false">
<Setter Property="Opacity" TargetName="border" Value="0.56"/> <Setter TargetName="border" Property="Opacity" Value="0.56" />
</Trigger> </Trigger>
</ControlTemplate.Triggers> </ControlTemplate.Triggers>
</ControlTemplate> </ControlTemplate>
...@@ -32,4 +41,51 @@ ...@@ -32,4 +41,51 @@
</Setter> </Setter>
</Style> </Style>
<Style x:Key="TextBoxStyle" TargetType="{x:Type TextBox}">
<!--<Setter Property="FontFamily" Value="{StaticResource SysFontFamily}" />-->
<Setter Property="Foreground" Value="White" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Height" Value="30" />
<Setter Property="Width" Value="90" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="CaretBrush" Value="White" />
<Setter Property="Background" Value="#282A2C" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBox}">
<Grid>
<!--<Grid.Effect>
<DropShadowEffect
Direction="{StaticResource DropShadowEffectDirection}"
Opacity="{StaticResource SysOpacity}"
ShadowDepth="{StaticResource SysShadowDepth}"
Color="{StaticResource DropShadowEffectColor}" />
</Grid.Effect>-->
<Border
x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="Gray"
BorderThickness="1"
SnapsToDevicePixels="True">
<ScrollViewer
x:Name="PART_ContentHost"
VerticalAlignment="Center"
Focusable="False" />
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsFocused" Value="True">
<Setter Property="Foreground" Value="White" />
<Setter Property="FontWeight" Value="Bold" />
<!--<Setter TargetName="border" Property="BorderBrush" Value="{StaticResource BorderHighLight}" />-->
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Gray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary> </ResourceDictionary>
\ No newline at end of file
...@@ -10,11 +10,11 @@ none ...@@ -10,11 +10,11 @@ none
false false
DEBUG;TRACE DEBUG;TRACE
16153409119 16498493296
1470602451 1-1441241311
11-350624472 11-1602666439
241319896476 23304678694
Style\Button\Button_NdiView.xaml;Style\Button\Button_Setting.xaml;Style\Button\Button_WindowTop.xaml;Style\CheckBox\CheckBox_NdiView.xaml;Style\CheckBox\CheckBox_Setting.xaml;Style\CheckBox\CheckBox_WindowTop.xaml;Style\ComboBox\ComboBox_Setting.xaml;Style\HotkeyBox\HotkeyBox_Setting.xaml;Style\MessageBox\MessageBoxEx.xaml;Style\RadioButton\RadioButton_FootballSide.xaml;Style\RadioButton\RadioButton_NdiView.xaml;Style\RadioButton\RadioButton_Setting.xaml;Style\Slider\Slider_Setting.xaml;Style\TextBox\TextBox_Setting.xaml;Themes\Generic.xaml;Toolkit\NumericUpDown\NumericUpDown.xaml; Style\Button\Button_NdiView.xaml;Style\Button\Button_Setting.xaml;Style\Button\Button_WindowTop.xaml;Style\CheckBox\CheckBox_NdiView.xaml;Style\CheckBox\CheckBox_Setting.xaml;Style\CheckBox\CheckBox_WindowTop.xaml;Style\ComboBox\ComboBox_Setting.xaml;Style\HotkeyBox\HotkeyBox_Setting.xaml;Style\MessageBox\MessageBoxEx.xaml;Style\RadioButton\RadioButton_FootballSide.xaml;Style\RadioButton\RadioButton_NdiView.xaml;Style\RadioButton\RadioButton_Setting.xaml;Style\Slider\Slider_Setting.xaml;Style\TextBox\TextBox_Setting.xaml;Themes\Generic.xaml;Toolkit\NumericUpDown\NumericUpDown.xaml;
False True
...@@ -505,7 +505,7 @@ namespace VIZ.FGOUT.Module ...@@ -505,7 +505,7 @@ namespace VIZ.FGOUT.Module
replayPackage.type = "LOADMASK"; replayPackage.type = "LOADMASK";
VedioData data = new VedioData(); VideoData data = new VideoData();
if(IsMatImage) if(IsMatImage)
{ {
......
...@@ -186,7 +186,7 @@ namespace VIZ.FGOUT.Module ...@@ -186,7 +186,7 @@ namespace VIZ.FGOUT.Module
if (e.HitTrackingBoxInfo == null) if (e.HitTrackingBoxInfo == null)
return; return;
this.AlgorithmControllerDic[this.StrategyType].Tracking(e.VedioPointCenter); this.AlgorithmControllerDic[this.StrategyType].Tracking(e.VideoPointCenter);
} }
/// <summary> /// <summary>
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
Title="Replay功能" Title="Replay功能"
Width="518" Width="518"
Height="518" Height="518"
d:DataContext="{d:DesignInstance Type=local:RePlayPanelViewModel}"
WindowStartupLocation="CenterScreen" WindowStartupLocation="CenterScreen"
mc:Ignorable="d"> mc:Ignorable="d">
...@@ -37,25 +38,25 @@ ...@@ -37,25 +38,25 @@
<Button <Button
Grid.Row="0" Grid.Row="0"
Grid.Column="0" Grid.Column="0"
Command="{Binding ReplayVedioCommand}" Command="{Binding ReplayVideoCommand}"
Content="Replay" Content="Replay"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<Button <Button
Grid.Row="0" Grid.Row="0"
Grid.Column="1" Grid.Column="1"
Command="{Binding CleanVedioCommand}" Command="{Binding CleanVideoCommand}"
Content="Restart" Content="Restart"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<Button <Button
Grid.Row="0" Grid.Row="0"
Grid.Column="2" Grid.Column="2"
Command="{Binding LiveVedioCommand}" Command="{Binding LiveVideoCommand}"
Content="Live" Content="Live"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
<Button <Button
Grid.Row="0" Grid.Row="0"
Grid.Column="3" Grid.Column="3"
Command="{Binding StopVedioCommand}" Command="{Binding StopVideoCommand}"
Content="Stop" Content="Stop"
Style="{StaticResource ButtonStyle}" /> Style="{StaticResource ButtonStyle}" />
......
...@@ -3,13 +3,14 @@ ...@@ -3,13 +3,14 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VIZ.FGOUT.Module.SystemSetting.View" xmlns:local="clr-namespace:VIZ.FGOUT.Module"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="UE设置" Title="UE设置"
Width="800" Width="800"
Height="450" Height="450"
Background="Black" d:DataContext="{d:DesignInstance Type=local:UESettingPanelViewModel}"
Background="#383D41"
WindowStartupLocation="CenterScreen" WindowStartupLocation="CenterScreen"
mc:Ignorable="d"> mc:Ignorable="d">
<Window.Resources> <Window.Resources>
...@@ -49,7 +50,7 @@ ...@@ -49,7 +50,7 @@
</x:Array> </x:Array>
</ResourceDictionary> </ResourceDictionary>
</Window.Resources> </Window.Resources>
<Grid Margin="10"> <Grid Margin="60,10,10,10">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition /> <RowDefinition />
<RowDefinition /> <RowDefinition />
...@@ -63,10 +64,10 @@ ...@@ -63,10 +64,10 @@
<RowDefinition /> <RowDefinition />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition /> <ColumnDefinition Width="2*" />
<ColumnDefinition /> <ColumnDefinition Width="3*" />
<ColumnDefinition /> <ColumnDefinition Width="2*" />
<ColumnDefinition /> <ColumnDefinition Width="3*" />
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<TextBlock <TextBlock
...@@ -76,8 +77,8 @@ ...@@ -76,8 +77,8 @@
<ComboBox <ComboBox
Grid.Column="1" Grid.Column="1"
ItemsSource="{StaticResource Eases}" ItemsSource="{StaticResource Eases}"
SelectedIndex="2" SelectedItem="{Binding ZoomEaseItem, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Column="2" Grid.Column="2"
VerticalAlignment="Center" VerticalAlignment="Center"
...@@ -86,8 +87,8 @@ ...@@ -86,8 +87,8 @@
<ComboBox <ComboBox
Grid.Column="3" Grid.Column="3"
ItemsSource="{StaticResource Eases}" ItemsSource="{StaticResource Eases}"
SelectedIndex="2" SelectedItem="{Binding MoveEaseItem, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Row="1" Grid.Row="1"
...@@ -97,7 +98,8 @@ ...@@ -97,7 +98,8 @@
<TextBox <TextBox
Grid.Row="1" Grid.Row="1"
Grid.Column="1" Grid.Column="1"
Text="0.4" /> Style="{StaticResource TextBoxStyle}"
Text="{Binding Scale, Mode=TwoWay}" />
<TextBlock <TextBlock
Grid.Row="1" Grid.Row="1"
Grid.Column="2" Grid.Column="2"
...@@ -108,8 +110,8 @@ ...@@ -108,8 +110,8 @@
Grid.Row="1" Grid.Row="1"
Grid.Column="3" Grid.Column="3"
ItemsSource="{StaticResource LineFrontOrBehind}" ItemsSource="{StaticResource LineFrontOrBehind}"
SelectedIndex="1" SelectedIndex="{Binding Line, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Row="2" Grid.Row="2"
...@@ -119,7 +121,8 @@ ...@@ -119,7 +121,8 @@
<TextBox <TextBox
Grid.Row="2" Grid.Row="2"
Grid.Column="1" Grid.Column="1"
Text="3.0" /> Style="{StaticResource TextBoxStyle}"
Text="{Binding ZoomIn, Mode=TwoWay}" />
<TextBlock <TextBlock
Grid.Row="2" Grid.Row="2"
Grid.Column="2" Grid.Column="2"
...@@ -129,7 +132,8 @@ ...@@ -129,7 +132,8 @@
<TextBox <TextBox
Grid.Row="2" Grid.Row="2"
Grid.Column="3" Grid.Column="3"
Text="4.0" /> Style="{StaticResource TextBoxStyle}"
Text="{Binding ZoomOut, Mode=TwoWay}" />
<TextBlock <TextBlock
Grid.Row="3" Grid.Row="3"
...@@ -138,8 +142,9 @@ ...@@ -138,8 +142,9 @@
Text="Move:" /> Text="Move:" />
<TextBox <TextBox
Grid.Row="3" Grid.Row="3"
Grid.Column="3" Grid.Column="1"
Text="4.0" /> Style="{StaticResource TextBoxStyle}"
Text="{Binding Move, Mode=TwoWay}" />
<TextBlock <TextBlock
Grid.Row="4" Grid.Row="4"
...@@ -148,8 +153,9 @@ ...@@ -148,8 +153,9 @@
Text="SafeScale:" /> Text="SafeScale:" />
<TextBox <TextBox
Grid.Row="4" Grid.Row="4"
Grid.Column="3" Grid.Column="1"
Text="0.96" /> Style="{StaticResource TextBoxStyle}"
Text="{Binding SafeScale, Mode=TwoWay}" />
<TextBlock <TextBlock
Grid.Row="5" Grid.Row="5"
...@@ -160,8 +166,8 @@ ...@@ -160,8 +166,8 @@
Grid.Row="5" Grid.Row="5"
Grid.Column="1" Grid.Column="1"
ItemsSource="{StaticResource TrueOrFalse}" ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="1" SelectedIndex="{Binding ShowHeight, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Row="5" Grid.Row="5"
Grid.Column="2" Grid.Column="2"
...@@ -172,8 +178,8 @@ ...@@ -172,8 +178,8 @@
Grid.Row="5" Grid.Row="5"
Grid.Column="3" Grid.Column="3"
ItemsSource="{StaticResource TrueOrFalse}" ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="1" SelectedIndex="{Binding ShowSpeed, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Row="6" Grid.Row="6"
...@@ -182,10 +188,10 @@ ...@@ -182,10 +188,10 @@
Text="UseZoom:" /> Text="UseZoom:" />
<ComboBox <ComboBox
Grid.Row="6" Grid.Row="6"
Grid.Column="3" Grid.Column="1"
ItemsSource="{StaticResource TrueOrFalse}" ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="0" SelectedIndex="{Binding UseZoom, Mode=TwoWay}"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBlock <TextBlock
Grid.Row="7" Grid.Row="7"
...@@ -194,13 +200,14 @@ ...@@ -194,13 +200,14 @@
Text="MovementOnlyX:" /> Text="MovementOnlyX:" />
<ComboBox <ComboBox
Grid.Row="7" Grid.Row="7"
Grid.Column="2" Grid.Column="1"
ItemsSource="{StaticResource IsEnable}" ItemsSource="{StaticResource IsEnable}"
SelectedIndex="1" SelectedIndex="1"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBox <TextBox
Grid.Row="7" Grid.Row="7"
Grid.Column="3" Grid.Column="2"
Style="{StaticResource TextBoxStyle}"
Text="0" /> Text="0" />
<TextBlock <TextBlock
...@@ -210,13 +217,14 @@ ...@@ -210,13 +217,14 @@
Text="MovementOnlyY:" /> Text="MovementOnlyY:" />
<ComboBox <ComboBox
Grid.Row="8" Grid.Row="8"
Grid.Column="2" Grid.Column="1"
ItemsSource="{StaticResource IsEnable}" ItemsSource="{StaticResource IsEnable}"
SelectedIndex="1" SelectedIndex="1"
Style="{StaticResource ComboBox_Setting}" /> Style="{StaticResource ComboBoxStyle}" />
<TextBox <TextBox
Grid.Row="8" Grid.Row="8"
Grid.Column="3" Grid.Column="2"
Style="{StaticResource TextBoxStyle}"
Text="0" /> Text="0" />
<Grid <Grid
......
using System; using System.Windows;
using System.Collections.Generic; using VIZ.Framework.Core;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace VIZ.FGOUT.Module.SystemSetting.View namespace VIZ.FGOUT.Module.SystemSetting.View
{ {
...@@ -22,6 +11,9 @@ namespace VIZ.FGOUT.Module.SystemSetting.View ...@@ -22,6 +11,9 @@ namespace VIZ.FGOUT.Module.SystemSetting.View
public UESettingPanelView() public UESettingPanelView()
{ {
InitializeComponent(); InitializeComponent();
//view和viewModel进行绑定
WPFHelper.BindingViewModel(this, new UESettingPanelViewModel());
} }
} }
} }
...@@ -16,58 +16,51 @@ namespace VIZ.FGOUT.Module ...@@ -16,58 +16,51 @@ namespace VIZ.FGOUT.Module
{ {
public RePlayPanelViewModel() public RePlayPanelViewModel()
{ {
ReplayVedioCommand = new VCommand(this.ReplayVedio); ReplayVideoCommand = new VCommand(this.ReplayVideo);
StopVideoCommand = new VCommand(this.StopVideo);
StopVedioCommand = new VCommand(this.StopVedio); CleanVideoCommand = new VCommand(this.CleanVideo);
CleanVedioCommand = new VCommand(this.CleanVedio);
} }
/// <summary> /// <summary>
/// ReplayCommand /// ReplayCommand
/// </summary> /// </summary>
public VCommand ReplayVedioCommand { get; set; } public VCommand ReplayVideoCommand { get; set; }
/// <summary> /// <summary>
/// replay命令 /// replay命令
/// </summary> /// </summary>
private void ReplayVedio() private void ReplayVideo()
{ {
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP"); UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP");
if (manager == null) return; if (manager == null) return;
ReplayPackage replayPackage = new ReplayPackage(); ReplayPackage replayPackage = new ReplayPackage();
VedioData data = new VedioData();
replayPackage.type = "REPLAY"; replayPackage.type = "REPLAY";
VideoData data = new VideoData();
data.backTimes = Convert.ToInt32(ReplaySencond); data.backTimes = Convert.ToInt32(ReplaySencond);
//timecode //timecode
data.timecode = timecode; data.timecode = timecode;
data.status = 1; data.status = 1;
replayPackage.data = data; replayPackage.data = data;
manager.SendJson(replayPackage); manager.SendJson(replayPackage);
} }
/// <summary> /// <summary>
/// 清命令 /// 清命令
/// </summary> /// </summary>
public VCommand CleanVedioCommand { get; set; } public VCommand CleanVideoCommand { get; set; }
/// <summary> /// <summary>
/// 清视频命令 /// 清视频命令
/// </summary> /// </summary>
private void CleanVedio() private void CleanVideo()
{ {
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP"); UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP");
if (manager == null) return; if (manager == null) return;
ReplayPackage replayPackage = new ReplayPackage(); ReplayPackage replayPackage = new ReplayPackage();
VedioData data = new VedioData();
replayPackage.type = "REPLAY"; replayPackage.type = "REPLAY";
VideoData data = new VideoData();
data.backTimes = Convert.ToInt32(ReplaySencond); data.backTimes = Convert.ToInt32(ReplaySencond);
//timecode //timecode
data.timecode = timecode; data.timecode = timecode;
...@@ -76,14 +69,13 @@ namespace VIZ.FGOUT.Module ...@@ -76,14 +69,13 @@ namespace VIZ.FGOUT.Module
manager.SendJson(replayPackage); manager.SendJson(replayPackage);
} }
/// <summary> /// <summary>
/// 返回直播Command命令 /// 返回直播Command命令
/// </summary> /// </summary>
public VCommand LiveVedioCommand { get; set; } public VCommand LiveVideoCommand { get; set; }
private void LiveVedio() private void LiveVideo()
{ {
} }
...@@ -93,16 +85,16 @@ namespace VIZ.FGOUT.Module ...@@ -93,16 +85,16 @@ namespace VIZ.FGOUT.Module
public VCommand StopVedioCommand { get; set; } public VCommand StopVideoCommand { get; set; }
private void StopVedio() private void StopVideo()
{ {
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP"); UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"CAM_1__CLIP");
if (manager == null) return; if (manager == null) return;
ReplayPackage replayPackage = new ReplayPackage(); ReplayPackage replayPackage = new ReplayPackage();
VedioData data = new VedioData(); VideoData data = new VideoData();
replayPackage.type = "REPLAY"; replayPackage.type = "REPLAY";
data.backTimes = Convert.ToInt32(ReplaySencond); data.backTimes = Convert.ToInt32(ReplaySencond);
...@@ -123,7 +115,6 @@ namespace VIZ.FGOUT.Module ...@@ -123,7 +115,6 @@ namespace VIZ.FGOUT.Module
{ {
return replaySencond; return replaySencond;
} }
set set
{ {
replaySencond = value; replaySencond = value;
......
using System.Collections.Generic;
using System.IO.Packaging;
using System.Xml.Linq;
using VIZ.FGOUT.Connection.UDP.Clip.Signal.Send;
using VIZ.Framework.Connection;
using VIZ.Framework.Core;
namespace VIZ.FGOUT.Module
{
public class UESettingPanelViewModel : ViewModelBase
{
public UESettingPanelViewModel()
{
CancelCommand = new VCommand(this.Cancel);
SaveCommand = new VCommand(this.Save);
ConnectionManager.UdpConnection.AddEndpointManager(new UdpEndpointManager("UE", "127.0.0.1", 8888));
}
public VCommand CancelCommand { get; set; }
public VCommand SaveCommand { get; set; }
private void Cancel()
{
this.GetWindow().Close();
}
private void Save()
{
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"UE");
if (manager == null) return;
UEEvent ueEvent = new UEEvent();
ueEvent.UE_event = "OnPlayStarted";
ueEvent.UE_event = "OnPlayEnd";
//ueEvent.UE_event = "GetProperty";
manager.SendJson(ueEvent);
//UEPackage uePackage = new UEPackage();
//var positions = new List<Position>
//{
// new Position() { name = "height", x = 230, y = 485 },
// new Position() { name = "speed", x = 1035, y = 1890 }
//};
//uePackage.UE_Presets.StartSets.Datas.Positions = positions;
//manager.SendJson(uePackage);
}
#region Property
private string _zoomEaseItem = "SinusoidalInOut";
public string ZoomEaseItem
{
get => _zoomEaseItem;
set
{
_zoomEaseItem = value;
this.RaisePropertyChanged(nameof(ZoomEaseItem));
}
}
private string _moveEaseItem = "SinusoidalInOut";
public string MoveEaseItem
{
get => _moveEaseItem;
set
{
_moveEaseItem = value;
this.RaisePropertyChanged(nameof(MoveEaseItem));
}
}
private double _scale = 50;
public double Scale
{
get => this._scale;
set
{
_scale = value;
this.RaisePropertyChanged(nameof(Scale));
}
}
private int _line = 1;
public int Line
{
get => (int)_line;
set
{
_line = value;
this.RaisePropertyChanged(nameof(Line));
}
}
private double _zoomIn = 3.0;
public double ZoomIn
{
get => _zoomIn;
set
{
_zoomIn = value;
this.RaisePropertyChanged(nameof(ZoomIn));
}
}
private double _zoomOut = 4.0;
public double ZoomOut
{
get => _zoomOut;
set
{
_zoomOut = value;
this.RaisePropertyChanged(nameof(ZoomOut));
}
}
private double _move = 4.0;
public double Move
{
get => _move;
set
{
_move = value;
this.RaisePropertyChanged(nameof(Move));
}
}
private double _safeScale = 0.96;
public double SafeScale
{
get => _safeScale;
set
{
_safeScale = value;
this.RaisePropertyChanged(nameof(SafeScale));
}
}
private int _showHeight = 1;
public int ShowHeight
{
get => _showHeight;
set
{
_showHeight = value;
this.RaisePropertyChanged(nameof(ShowHeight));
}
}
private int _showSpeed = 1;
public int ShowSpeed
{
get => _showSpeed;
set
{
_showSpeed = value;
this.RaisePropertyChanged(nameof(ShowSpeed));
}
}
private int _useZoom = 0;
public int UseZoom
{
get => _useZoom;
set
{
_useZoom = value;
this.RaisePropertyChanged(nameof(UseZoom));
}
}
#endregion
}
}
...@@ -222,6 +222,7 @@ ...@@ -222,6 +222,7 @@
<Compile Include="SystemSetting\ViewModel\RePlayPanelViewModel.cs" /> <Compile Include="SystemSetting\ViewModel\RePlayPanelViewModel.cs" />
<Compile Include="SystemSetting\ViewModel\StyleSettingPanelViewModel.cs" /> <Compile Include="SystemSetting\ViewModel\StyleSettingPanelViewModel.cs" />
<Compile Include="SystemSetting\ViewModel\SystemSettingViewModel.cs" /> <Compile Include="SystemSetting\ViewModel\SystemSettingViewModel.cs" />
<Compile Include="SystemSetting\ViewModel\UESettingPanelViewModel.cs" />
<Compile Include="SystemSetting\View\AboutPanelView.xaml.cs"> <Compile Include="SystemSetting\View\AboutPanelView.xaml.cs">
<DependentUpon>AboutPanelView.xaml</DependentUpon> <DependentUpon>AboutPanelView.xaml</DependentUpon>
</Compile> </Compile>
......
69b9e7e612c5935b8c94690019085824545096aa ee020f471cba112ce1bf31b69cebc80992ab8b44
...@@ -12,7 +12,7 @@ DEBUG;TRACE ...@@ -12,7 +12,7 @@ DEBUG;TRACE
21-62725784 21-62725784
87-93054371 88770678874
150-1446398279 150-1446398279
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UESettingPanelView.xaml; NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UESettingPanelView.xaml;
......
...@@ -12,7 +12,7 @@ DEBUG;TRACE ...@@ -12,7 +12,7 @@ DEBUG;TRACE
21-62725784 21-62725784
881632389116 89-1798844935
150-1446398279 150-1446398279
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UESettingPanelView.xaml; NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UESettingPanelView.xaml;
......
...@@ -137,9 +137,9 @@ ...@@ -137,9 +137,9 @@
<Compile Include="LiteDB\System\SetManualConfig.cs" /> <Compile Include="LiteDB\System\SetManualConfig.cs" />
<Compile Include="LiteDB\System\SetPlaceConfig.cs" /> <Compile Include="LiteDB\System\SetPlaceConfig.cs" />
<Compile Include="LiteDB\System\SystemConfig.cs" /> <Compile Include="LiteDB\System\SystemConfig.cs" />
<Compile Include="LiteDB\Vedio\VideoEntity.cs" /> <Compile Include="LiteDB\Video\VideoEntity.cs" />
<Compile Include="LiteDB\Vedio\VideoGroupEntity.cs" /> <Compile Include="LiteDB\Video\VideoGroupEntity.cs" />
<Compile Include="LiteDB\Vedio\VideoGroupLogEntity.cs" /> <Compile Include="LiteDB\Video\VideoGroupLogEntity.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
......
e5f3e79318a875371dd68e25eaaaeccb131f6e6b 9c4eddba912ff83cd02038dba8eeaf41f123f475
2023-08-11 10:15:41,921 [13] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确! 2023-08-16 11:51:59,631 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。
2023-08-11 10:15:42,265 [9] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 10:36:31,286 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“bu”资源。
在 MS.Internal.Helper.FindResourceHelper.DoTryCatchWhen(Object arg)
在 System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
在 System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
2023-08-11 10:37:14,084 [12] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 10:37:14,374 [10] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 11:21:49,276 [13] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 11:21:50,283 [11] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 11:22:05,552 [11] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 11:26:29,956 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.ReplayVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 49 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 31
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 11:52:02,355 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:26:54,978 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.StopVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 113 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 45
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 13:15:07,622 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:53:43,137 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.ReplayVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 49 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 45
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 13:15:08,225 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:54:31,931 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.CleanVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 76 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 13:15:08,935 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:55:55,108 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.StopVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 113 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 14:45:47,453 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:55:57,944 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.ReplayVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 49 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 14:45:48,124 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 由于套接字没有连接并且(当使用一个 sendto 调用发送数据报套接字时)没有提供地址,发送或接收数据的请求没有被接受。 2023-08-16 15:56:00,738 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port) 在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69 在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72 在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.RePlayPanelViewModel.CleanVedio() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\RePlayPanelViewModel.cs:行号 76 在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-16 15:56:01,178 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-16 15:56:51,484 [1] ERROR VIZ.Framework.Core.VCommand - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.SendTo(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint remoteEP)
在 System.Net.Sockets.UdpClient.Send(Byte[] dgram, Int32 bytes, String hostname, Int32 port)
在 VIZ.Framework.Connection.UdpEndpointManager.Send(Byte[] buffer) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManager.cs:行号 69
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendString(UdpEndpointManager manager, String msg, Encoding encoding) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 39
在 VIZ.Framework.Connection.UdpEndpointManagerExpand.SendJson(UdpEndpointManager manager, Object obj) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 72
在 VIZ.FGOUT.Module.UESettingPanelViewModel.Save() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UESettingPanelViewModel.cs:行号 36
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108 在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-11 18:51:44,064 [3] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 18:52:00,825 [3] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-11 18:52:11,291 [11] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -25,6 +25,6 @@ namespace VIZ.Framework.Common ...@@ -25,6 +25,6 @@ namespace VIZ.Framework.Common
/// <summary> /// <summary>
/// 中心点坐标 /// 中心点坐标
/// </summary> /// </summary>
public Point VedioPointCenter { get; set; } public Point VideoPointCenter { get; set; }
} }
} }
...@@ -211,7 +211,7 @@ namespace VIZ.Framework.Common ...@@ -211,7 +211,7 @@ namespace VIZ.Framework.Common
TrackingBoxClickEventArgs args = new TrackingBoxClickEventArgs(); TrackingBoxClickEventArgs args = new TrackingBoxClickEventArgs();
args.MousePoint = uiPoint; args.MousePoint = uiPoint;
args.VedioPointCenter = bmpPoint; args.VideoPointCenter = bmpPoint;
args.HitTrackingBoxInfo = TrackingBoxExpand.HitTest(this.trackingBoxInfos, bmpPoint); args.HitTrackingBoxInfo = TrackingBoxExpand.HitTest(this.trackingBoxInfos, bmpPoint);
......
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.Clear">
</member>
<member name="M:System.Span`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.Span`1.Empty">
<returns></returns>
</member>
<member name="M:System.Span`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Fill(`0)">
<param name="value"></param>
</member>
<member name="M:System.Span`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.Span`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.Span`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.Span`1.Length">
<returns></returns>
</member>
<member name="M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}">
<param name="span"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(T[])~System.Span{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.ToArray">
<returns></returns>
</member>
<member name="M:System.Span`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
<member name="T:System.SpanExtensions">
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.Span{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan(System.String)">
<param name="text"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})">
<param name="arraySegment"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(``0[])">
<param name="array"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})">
<param name="array"></param>
<param name="destination"></param>
<typeparam name="T"></typeparam>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="T:System.ReadOnlySpan`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Empty">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Length">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.ToArray">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
</members>
</doc>
\ No newline at end of file
...@@ -280,4 +280,3 @@ D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\obj\x64\Debug\VIZ.Framewor ...@@ -280,4 +280,3 @@ D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\obj\x64\Debug\VIZ.Framewor
D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\obj\x64\Debug\VIZ.Framework.Common.pdb D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\obj\x64\Debug\VIZ.Framework.Common.pdb
D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\bin\x64\Debug\System.Runtime.CompilerServices.Unsafe.dll D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\bin\x64\Debug\System.Runtime.CompilerServices.Unsafe.dll
D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\bin\x64\Debug\System.Collections.Immutable.dll D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\bin\x64\Debug\System.Collections.Immutable.dll
D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Common\bin\x64\Debug\System.Memory.xml
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