Commit 65ad393a by 王永辉

UE控制页面优化 And 主页面排版调整

parent b53afded
......@@ -24,35 +24,37 @@ namespace VIZ.FGOUT.Connection.UDP.Clip.Signal.Send
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 bool bEnableSpline { get; set; } = true;
public bool bShowHeight { get; set; } = true;
public bool bShowSpeed { get; set; } = true;
public bool bEnableZoom { get; set; } = true;
}
public class SplineSets
{
public int bLineBehind { get; set; } = 0;
public bool bLineBehind { get; set; } = false;
}
public class ZoomSets
{
public string ZoomEase { get; set; } = "SinusoidalInOut";
public string MoveEase { get; set; } = "SinusoidalInOut";
public int Scale { get; set; } = 50;
public double 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 double delay_zoomin_move { get; set; } = 1;
public double delay_move_zoomout { get; set; } = 1;
public bool bMovementOnlyX { get; set; } = false;
public int MovementOnlyXPosition { get; set; } = 0;
public int bMovementOnlyY { get; set; } = 0;
public bool bMovementOnlyY { get; set; } = false;
public int MovementOnlyYPosition { get; set; } = 0;
}
public class Datas
{
public int bIsManualMode { get; set; } = 0;
public bool bIsManualMode { get; set; } = false;
public List<Position> Positions { get; set;} = new List<Position>();
}
......
......@@ -146,9 +146,9 @@
<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="Width" Value="60" />
<Setter Property="Height" Value="30" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Background" Value="#626669" />
<Setter Property="BorderBrush" Value="Transparent" />
......
......@@ -106,7 +106,7 @@
</Setter>
</Style>
<Style x:Key="ToggleButtonStyle" TargetType="ToggleButton">
<Style x:Key="ToggleButtonForComboBox" TargetType="ToggleButton">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
......@@ -142,7 +142,7 @@
<Setter Property="Height" Value="30" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="Width" Value="150" />
<Setter Property="Width" Value="120" />
<Setter Property="Background" Value="#282A2C" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="1" />
......@@ -155,9 +155,8 @@
x:Name="toggleButton"
Grid.ColumnSpan="2"
IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
Style="{StaticResource ToggleButtonStyle}" />
Style="{StaticResource ToggleButtonForComboBox}" />
<ContentPresenter
Margin="12,0"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{TemplateBinding SelectionBoxItem}"
......
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="RadioButton" x:Key="RadioButton_Setting">
<Setter Property="FocusVisualStyle" Value="{x:Null}"></Setter>
<Style x:Key="RadioButton_Setting" TargetType="RadioButton">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="RadioButton">
<Border x:Name="bd_inner" Background="Transparent">
<Border x:Name="bd" Background="Transparent">
<ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" Margin="45,0,10,0"></ContentPresenter>
<ContentPresenter
Margin="45,0,10,0"
HorizontalAlignment="Left"
VerticalAlignment="Center" />
</Border>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter TargetName="bd" Property="Background" Value="#ff825611"></Setter>
<Setter TargetName="bd" Property="Background" Value="#ff825611" />
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="bd_inner" Property="Background" Value="#22ffffff"></Setter>
<Setter TargetName="bd_inner" Property="Background" Value="#22ffffff" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
......@@ -24,9 +26,16 @@
</Setter>
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.7"></Setter>
<Setter Property="Opacity" Value="0.7" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="RadioButtonStyle" TargetType="RadioButton">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Foreground" Value="White" />
<Setter Property="FontSize" Value="14" />
</Style>
</ResourceDictionary>
\ No newline at end of file
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="TextBlockStyle" TargetType="TextBlock">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="FontSize" Value="14" />
<Setter Property="Foreground" Value="White" />
</Style>
</ResourceDictionary>
\ No newline at end of file
......@@ -47,8 +47,9 @@
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Height" Value="30" />
<Setter Property="Width" Value="90" />
<Setter Property="Width" Value="120" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="CaretBrush" Value="White" />
<Setter Property="Background" Value="#282A2C" />
<Setter Property="Template">
......
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="FalseOrTrueToggleButtonStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="Foreground" Value="#E46464" />
<Setter Property="Background" Value="Black" />
<Setter Property="FontSize" Value="14" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="Content" Value="False" />
<Setter Property="Height" Value="30" />
<Setter Property="Width" Value="120" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid>
<Border
x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="1.5"
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="IsChecked" Value="True">
<Setter Property="Foreground" Value="White" />
<Setter Property="Content" Value="True" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="EnableOrDisableToggleButtonStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="Foreground" Value="#E46464" />
<Setter Property="Background" Value="Black" />
<Setter Property="FontSize" Value="14" />
<Setter Property="Width" Value="120" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="Content" Value="Disable" />
<Setter Property="Height" Value="30" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid>
<Border
x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="1.5"
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="IsChecked" Value="True">
<Setter Property="Foreground" Value="#80F470" />
<Setter Property="Content" Value="Enable" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="LineFrontOrBehindToggleButtonStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="Black" />
<Setter Property="FontSize" Value="14" />
<Setter Property="Width" Value="120" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="Content" Value="LineFront" />
<Setter Property="Height" Value="30" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid>
<Border
x:Name="border"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="1.5"
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="IsChecked" Value="True">
<Setter Property="Foreground" Value="White" />
<Setter Property="Content" Value="LineBehind" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Gray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
\ No newline at end of file
......@@ -201,10 +201,18 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Style\TextBlock\TextBlock_Setting.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Style\TextBox\TextBox_Setting.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Style\ToogleButton\ToogleButton_Setting.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Themes\Generic.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
......
......@@ -496,3 +496,5 @@ D:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\VIZ.FGOUT.Mo
D:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\VIZ.FGOUT.Module.Resource.csproj.CopyComplete
D:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\VIZ.FGOUT.Module.Resource.dll
D:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\VIZ.FGOUT.Module.Resource.pdb
D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\Style\ToogleButton\ToogleButton_Setting.baml
D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\Style\TextBlock\TextBlock_Setting.baml
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
16498493296
1-1441241311
11-1602666439
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;
18560433975
1470602451
11-350624472
241319896476
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\TextBlock\TextBlock_Setting.xaml;Style\TextBox\TextBox_Setting.xaml;Style\ToogleButton\ToogleButton_Setting.xaml;Themes\Generic.xaml;Toolkit\NumericUpDown\NumericUpDown.xaml;
True
False
......@@ -4,17 +4,17 @@
library
C#
.cs
D:\Projects\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\
D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module.Resource\obj\x64\Debug\
VIZ.FGOUT.Module.Resource
none
false
DEBUG;TRACE
16153409119
18560433975
1470602451
121374819015
23-1212766390
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;
23-676971786
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\TextBlock\TextBlock_Setting.xaml;Style\TextBox\TextBox_Setting.xaml;Style\ToogleButton\ToogleButton_Setting.xaml;Themes\Generic.xaml;Toolkit\NumericUpDown\NumericUpDown.xaml;
False
......@@ -115,12 +115,17 @@
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="230*" />
<!--<ColumnDefinition Width="230*" />
<ColumnDefinition Width="209*" />
<ColumnDefinition Width="21*" />
<ColumnDefinition Width="21*" />-->
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Grid.Row="0" Grid.Column="0">
<WrapPanel
Grid.Row="1"
Grid.Column="0"
Margin="135,0,0,0">
<Grid>
<Grid.ColumnDefinitions>
......@@ -168,7 +173,10 @@
</Grid>
</WrapPanel>
<WrapPanel Grid.Row="0" Grid.Column="1">
<WrapPanel
Grid.Row="1"
Grid.Column="1"
Margin="125,0,0,0">
<Grid>
......@@ -295,7 +303,7 @@
<local:NDIView
x:Name="cam1"
Grid.Row="1"
Grid.Row="0"
Grid.Column="0"
Margin="15,10,10,10"
MouseLeftButtonDown="cam1_MouseLeftButtonDown"
......@@ -313,7 +321,7 @@
<!-- CAM_1 会作为单一窗口时的主窗口 -->
<local:NDIView
x:Name="cam2"
Grid.Row="1"
Grid.Row="0"
Grid.Column="1"
Margin="15,10,10,10"
MouseLeftButtonDown="cam2_MouseLeftButtonDown"
......
......@@ -2,11 +2,12 @@
x:Class="VIZ.FGOUT.Module.SystemSetting.View.UEControlPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VIZ.FGOUT.Module"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="UE控制页面"
Title="UE Control"
Width="{Binding WindowWidth, Mode=TwoWay}"
Height="450"
d:DataContext="{d:DesignInstance Type=local:UEControlPanelViewModel}"
......@@ -20,14 +21,17 @@
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/ComboBox/ComboBox_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/Button/Button_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/TextBox/TextBox_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/ToogleButton/ToogleButton_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/RadioButton/RadioButton_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/TextBlock/TextBlock_Setting.xaml" />
</ResourceDictionary.MergedDictionaries>
<x:Array x:Key="TrueOrFalse" Type="sys:String">
<sys:String>True</sys:String>
<sys:String>False</sys:String>
<sys:String>True</sys:String>
</x:Array>
<x:Array x:Key="IsEnable" Type="sys:String">
<sys:String>Enable</sys:String>
<sys:String>Disable</sys:String>
<sys:String>Enable</sys:String>
</x:Array>
<x:Array x:Key="Eases" Type="sys:String">
<sys:String>Linear</sys:String>
......@@ -52,7 +56,7 @@
</ResourceDictionary>
</Window.Resources>
<StackPanel Orientation="Horizontal">
<Grid Width="400">
<Grid Width="300" Margin="10">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
......@@ -67,8 +71,10 @@
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button
<TextBlock Style="{StaticResource TextBlockStyle}" Text="Effect" />
<!--<Button
HorizontalAlignment="Right"
Command="{Binding StartPackagingCommand}"
Content="开始包装"
......@@ -78,8 +84,25 @@
HorizontalAlignment="Left"
Command="{Binding StopPackagingCommand}"
Content="停止包装"
Style="{StaticResource ButtonStyle}" />
<Button
Style="{StaticResource ButtonStyle}" />-->
<RadioButton
Grid.Row="0"
Grid.Column="1"
Command="{Binding StartPackagingCommand}"
Content="On"
GroupName="EffectGroup"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Column="2"
Command="{Binding StopPackagingCommand}"
Content="Off"
GroupName="EffectGroup"
Style="{StaticResource RadioButtonStyle}" />
<TextBlock
Grid.Row="1"
Style="{StaticResource TextBlockStyle}"
Text="Speed" />
<!--<Button
Grid.Row="1"
HorizontalAlignment="Right"
Command="{Binding DisplaySpeedCommand}"
......@@ -91,8 +114,22 @@
HorizontalAlignment="Left"
Command="{Binding HideSpeedCommand}"
Content="隐藏速度"
Style="{StaticResource ButtonStyle}" />
<Button
Style="{StaticResource ButtonStyle}" />-->
<RadioButton
Grid.Row="1"
Grid.Column="1"
Command="{Binding DisplaySpeedCommand}"
Content="On"
GroupName="SpeedGroup"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Row="1"
Grid.Column="2"
Command="{Binding HideSpeedCommand}"
Content="Off"
GroupName="SpeedGroup"
Style="{StaticResource RadioButtonStyle}" />
<!--<Button
Grid.Row="2"
HorizontalAlignment="Right"
Command="{Binding DisplayHeightCommand}"
......@@ -104,8 +141,44 @@
HorizontalAlignment="Left"
Command="{Binding HideHeightCommand}"
Content="隐藏高度"
Style="{StaticResource ButtonStyle}" />
<Button
Style="{StaticResource ButtonStyle}" />-->
<TextBlock
Grid.Row="2"
Style="{StaticResource TextBlockStyle}"
Text="Height" />
<RadioButton
Grid.Row="2"
Grid.Column="1"
Command="{Binding DisplayHeightCommand}"
Content="On"
GroupName="HeightGroup"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Row="2"
Grid.Column="2"
Command="{Binding HideHeightCommand}"
Content="Off"
GroupName="HeightGroup"
Style="{StaticResource RadioButtonStyle}" />
<TextBlock
Grid.Row="3"
Style="{StaticResource TextBlockStyle}"
Text="PZT" />
<RadioButton
Grid.Row="3"
Grid.Column="1"
Command="{Binding EnableZoomCommand}"
Content="On"
GroupName="PztGroup"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Row="3"
Grid.Column="2"
Command="{Binding CloseZoomCommand}"
Content="Off"
GroupName="PztGroup"
Style="{StaticResource RadioButtonStyle}" />
<!--<Button
Grid.Row="3"
HorizontalAlignment="Right"
Command="{Binding EnableZoomCommand}"
......@@ -117,16 +190,49 @@
HorizontalAlignment="Left"
Command="{Binding CloseZoomCommand}"
Content="关闭zoom"
Style="{StaticResource ButtonStyle}" />
Style="{StaticResource ButtonStyle}" />-->
<TextBlock
Grid.Row="4"
Margin="0,0,30,0"
HorizontalAlignment="Right"
VerticalAlignment="Center"
FontSize="14"
Foreground="White"
Text="画线位置" />
<StackPanel
Grid.Column="0"
Style="{StaticResource TextBlockStyle}"
Text="Line" />
<RadioButton
x:Name="ShowLine"
Grid.Row="4"
Grid.Column="1"
Command="{Binding ShowLineCommand}"
Content="Show"
GroupName="LineGroup"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Row="4"
Grid.Column="2"
Command="{Binding HideLineCommand}"
Content="Hide"
GroupName="LineGroup"
Style="{StaticResource RadioButtonStyle}" />
<TextBlock
Grid.Row="5"
Grid.Column="0"
Style="{StaticResource TextBlockStyle}"
Text="Curve" />
<RadioButton
Grid.Row="5"
Grid.Column="1"
Command="{Binding BeforeDrawingLinePositionCommand}"
Content="Front"
GroupName="CurveGroup"
IsEnabled="{Binding ElementName=ShowLine, Path=IsChecked}"
Style="{StaticResource RadioButtonStyle}" />
<RadioButton
Grid.Row="5"
Grid.Column="2"
Command="{Binding AfterDrawingTheLinePositionCommand}"
Content="Behind"
GroupName="CurveGroup"
IsEnabled="{Binding ElementName=ShowLine, Path=IsChecked}"
Style="{StaticResource RadioButtonStyle}" />
<!--<StackPanel
Grid.Row="4"
Grid.Column="1"
HorizontalAlignment="Left"
......@@ -141,16 +247,13 @@
Command="{Binding AfterDrawingTheLinePositionCommand}"
Content="后"
Style="{StaticResource ButtonStyle}" />
</StackPanel>
</StackPanel>-->
<TextBlock
Grid.Row="5"
Margin="0,0,30,0"
HorizontalAlignment="Right"
VerticalAlignment="Center"
FontSize="14"
Foreground="White"
Text="预设项目" />
<StackPanel
Grid.Row="6"
Grid.Column="0"
Style="{StaticResource TextBlockStyle}"
Text="Sports" />
<!--<StackPanel
Grid.Row="5"
Grid.Column="1"
HorizontalAlignment="Left"
......@@ -159,27 +262,52 @@
Width="100"
ItemsSource="{Binding PresetsProjects}"
SelectedItem="{Binding PresetsItem}"
Style="{StaticResource ComboBoxStyle}" />
Style="{StaticResource ComboBoxStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="SelectionChanged">
<b:InvokeCommandAction Command="{Binding PresetsSelectionChangedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ComboBox>
<Button
Width="55"
Width="70"
Margin="5,0,0,0"
Command="{Binding DetailCommand}"
Content="详情"
Content="{Binding DetailContent, Mode=TwoWay}"
Style="{StaticResource ButtonStyle}" />
</StackPanel>
</StackPanel>-->
<ComboBox
Grid.Row="6"
Grid.Column="1"
Width="100"
ItemsSource="{Binding PresetsProjects}"
SelectedItem="{Binding PresetsItem}"
Style="{StaticResource ComboBoxStyle}">
<b:Interaction.Triggers>
<b:EventTrigger EventName="SelectionChanged">
<b:InvokeCommandAction Command="{Binding PresetsSelectionChangedCommand}" />
</b:EventTrigger>
</b:Interaction.Triggers>
</ComboBox>
<Button
Grid.Row="6"
Grid.RowSpan="3"
Grid.ColumnSpan="2"
Width="220"
Height="120"
Grid.Column="2"
Margin="5,0,0,0"
Command="{Binding DetailCommand}"
Content="{Binding DetailContent, Mode=TwoWay}"
Style="{StaticResource ButtonStyle}" />
<Button
Grid.Row="8"
Grid.Column="2"
Margin="5,0,0,0"
Command="{Binding SendPresetCommand}"
Content="发送预设"
Content="Save"
Style="{StaticResource ButtonStyle}" />
</Grid>
<Grid
Width="800"
Margin="0,10,10,10"
Width="600"
Margin="10"
Visibility="{Binding UESettingVisibility, Mode=TwoWay}">
<Grid.RowDefinitions>
<RowDefinition />
......@@ -219,7 +347,6 @@
ItemsSource="{StaticResource Eases}"
SelectedItem="{Binding MoveEaseItem, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />
<TextBlock
Grid.Row="1"
VerticalAlignment="Center"
......@@ -230,60 +357,79 @@
Grid.Column="1"
Style="{StaticResource TextBoxStyle}"
Text="{Binding Scale, Mode=TwoWay}" />
<TextBlock
Grid.Row="1"
Grid.Column="2"
Grid.Row="2"
Grid.Column="0"
VerticalAlignment="Center"
Foreground="White"
Text="Line:" />
<ComboBox
<ToggleButton
x:Name="EnableSpline"
Grid.Row="2"
Grid.Column="1"
IsChecked="{Binding BEnableSpline, Mode=TwoWay}"
Style="{StaticResource EnableOrDisableToggleButtonStyle}" />
<TextBlock
Grid.Row="2"
Grid.Column="2"
VerticalAlignment="Center"
Foreground="White"
Text="Curve:" />
<!--<ComboBox
Grid.Row="1"
Grid.Column="3"
ItemsSource="{StaticResource LineFrontOrBehind}"
SelectedIndex="{Binding Line, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />
<TextBlock
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
Grid.Row="2"
Grid.Column="3"
IsChecked="{Binding Line, Mode=TwoWay}"
IsEnabled="{Binding ElementName=EnableSpline, Path=IsChecked}"
Style="{StaticResource LineFrontOrBehindToggleButtonStyle}" />
<TextBlock
Grid.Row="3"
VerticalAlignment="Center"
Foreground="White"
Text="ZoomIn:" />
<TextBox
Grid.Row="2"
Grid.Row="3"
Grid.Column="1"
Style="{StaticResource TextBoxStyle}"
Text="{Binding ZoomIn, Mode=TwoWay}" />
<TextBlock
Grid.Row="2"
Grid.Row="3"
Grid.Column="2"
VerticalAlignment="Center"
Foreground="White"
Text="ZoomOut:" />
<TextBox
Grid.Row="2"
Grid.Row="3"
Grid.Column="3"
Style="{StaticResource TextBoxStyle}"
Text="{Binding ZoomOut, Mode=TwoWay}" />
<TextBlock
Grid.Row="3"
Grid.Row="4"
VerticalAlignment="Center"
Foreground="White"
Text="Move:" />
<TextBox
Grid.Row="3"
Grid.Row="4"
Grid.Column="1"
Style="{StaticResource TextBoxStyle}"
Text="{Binding Move, Mode=TwoWay}" />
<TextBlock
Grid.Row="4"
Grid.Column="2"
VerticalAlignment="Center"
Foreground="White"
Text="SafeScale:" />
<TextBox
Grid.Row="4"
Grid.Column="1"
Grid.Column="3"
Style="{StaticResource TextBoxStyle}"
Text="{Binding SafeScale, Mode=TwoWay}" />
......@@ -292,96 +438,105 @@
VerticalAlignment="Center"
Foreground="White"
Text="ShowHeight:" />
<ComboBox
<!--<ComboBox
Grid.Row="5"
Grid.Column="1"
ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="{Binding ShowHeight, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
Grid.Row="5"
Grid.Column="1"
IsChecked="{Binding ShowHeight, Mode=TwoWay}"
Style="{StaticResource FalseOrTrueToggleButtonStyle}" />
<TextBlock
Grid.Row="5"
Grid.Column="2"
VerticalAlignment="Center"
Foreground="White"
Text="ShowSpeed:" />
<ComboBox
<!--<ComboBox
Grid.Row="5"
Grid.Column="3"
ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="{Binding ShowSpeed, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
Grid.Row="5"
Grid.Column="3"
IsChecked="{Binding ShowSpeed, Mode=TwoWay}"
Style="{StaticResource FalseOrTrueToggleButtonStyle}" />
<TextBlock
Grid.Row="6"
VerticalAlignment="Center"
Foreground="White"
Text="UseZoom:" />
<ComboBox
<!--<ComboBox
Grid.Row="6"
Grid.Column="1"
ItemsSource="{StaticResource TrueOrFalse}"
SelectedIndex="{Binding UseZoom, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
Grid.Row="6"
Grid.Column="1"
IsChecked="{Binding UseZoom, Mode=TwoWay}"
Style="{StaticResource FalseOrTrueToggleButtonStyle}" />
<TextBlock
Grid.Row="7"
VerticalAlignment="Center"
Foreground="White"
Text="MovementOnlyX:" />
<ComboBox
<!--<ComboBox
Grid.Row="7"
Grid.Column="1"
ItemsSource="{StaticResource IsEnable}"
SelectedIndex="1"
Style="{StaticResource ComboBoxStyle}" />
SelectedIndex="{Binding BMovementOnlyX, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
x:Name="MovementOnlyX"
Grid.Row="7"
Grid.Column="1"
IsChecked="{Binding BMovementOnlyX, Mode=TwoWay}"
Style="{StaticResource EnableOrDisableToggleButtonStyle}" />
<TextBox
Grid.Row="7"
Grid.Column="2"
IsEnabled="{Binding ElementName=MovementOnlyX, Path=IsChecked}"
Style="{StaticResource TextBoxStyle}"
Text="0" />
Text="{Binding MovementOnlyXPosition, Mode=TwoWay}" />
<TextBlock
Grid.Row="8"
VerticalAlignment="Center"
Foreground="White"
Text="MovementOnlyY:" />
<ComboBox
<!--<ComboBox
Grid.Row="8"
Grid.Column="1"
ItemsSource="{StaticResource IsEnable}"
SelectedIndex="1"
Style="{StaticResource ComboBoxStyle}" />
SelectedIndex="{Binding BMovementOnlyY, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" />-->
<ToggleButton
x:Name="MovementOnlyY"
Grid.Row="8"
Grid.Column="1"
IsChecked="{Binding BMovementOnlyY, Mode=TwoWay}"
Style="{StaticResource EnableOrDisableToggleButtonStyle}" />
<TextBox
Grid.Row="8"
Grid.Column="2"
IsEnabled="{Binding ElementName=MovementOnlyY, Path=IsChecked}"
Style="{StaticResource TextBoxStyle}"
Text="0" />
<Grid
Text="{Binding MovementOnlyYPosition, Mode=TwoWay}" />
<Button
Grid.Row="9"
Grid.Column="2"
ColumnSpan="2">
<StackPanel
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Orientation="Horizontal">
<Button
Width="90"
Height="30"
Margin="0,0,10,0"
Command="{Binding Path=CancelCommand}"
Content="隐藏详情"
Style="{StaticResource ButtonStyle}" />
<Button
Width="90"
Height="30"
Margin="0,0,30,0"
Command="{Binding Path=SaveCommand}"
Content="发送"
Style="{StaticResource ButtonStyle}" />
</StackPanel>
</Grid>
Grid.Column="3"
HorizontalAlignment="Center"
Command="{Binding Path=SaveCommand}"
Content="Save"
Style="{StaticResource ButtonStyle}" />
</Grid>
</StackPanel>
</Window>
using System.Collections.Generic;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Remoting.Contexts;
using System.Windows;
using VIZ.FGOUT.Connection;
using VIZ.FGOUT.Connection.UDP.Clip.Signal.Send;
using VIZ.FGOUT.Domain;
using VIZ.FGOUT.Storage;
......@@ -14,6 +18,7 @@ namespace VIZ.FGOUT.Module
//网络终结点key
private string _endpointKey = "UE";
JavelinThrowConfig javelinThrowConfig = new JavelinThrowConfig();
public UEControlPanelViewModel()
{
StartPackagingCommand = new VCommand(this.StartPackaging);
......@@ -31,6 +36,10 @@ namespace VIZ.FGOUT.Module
DetailCommand = new VCommand(this.Detail);
CancelCommand = new VCommand(this.Cancel);
PresetsSelectionChangedCommand = new VCommand(this.PresetsSelectionChanged);
SaveCommand = new VCommand(this.Save);
//ConnectionManager.UdpConnection.AddEndpointManager(new UdpEndpointManager(_endpointKey, "127.0.0.1", 8888));
string clientIP = ApplicationDomainEx.IniStorage.GetValue<UdpConfig, string>(p => p.UDP_BINDING_IP);
ConnectionManager.UdpConnection.AddEndpointManager(new UdpEndpointManager(_endpointKey, clientIP, 8888));
......@@ -38,10 +47,82 @@ namespace VIZ.FGOUT.Module
javelinThrowConfig = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindAll().FirstOrDefault();
if (javelinThrowConfig == null) return;
PresetsProjects.Add("掷标枪");
//掷标枪
PresetsProjects.Add("Javelin Throw");
//var number = javelinThrowConfig.Number;
//var data = javelinThrowConfig.Data;
}
/// <summary>
/// 序列化设置
/// </summary>
private readonly static JsonSerializerSettings JSON_SERIALIZER_SETTINGS = new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Ignore
};
public VCommand SaveCommand { get; set; }
/// <summary>
/// 发送自定义的预设数据
/// </summary>
private void Save()
{
//如果没有选择预设则不发送
if(PresetsItem == null) return;
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager($"UE");
if (manager == null) return;
UEPackage uePackage = new UEPackage();
var zoomSets = new ZoomSets();
zoomSets.ZoomEase = ZoomEaseItem;
zoomSets.MoveEase = MoveEaseItem;
zoomSets.Scale = Scale;
zoomSets.ZoomIn = ZoomIn;
zoomSets.ZoomOut = ZoomOut;
zoomSets.Move = Move;
zoomSets.SafeScale = SafeScale;
zoomSets.bMovementOnlyX = BMovementOnlyX;
zoomSets.MovementOnlyXPosition = MovementOnlyXPosition;
zoomSets.bMovementOnlyY = BMovementOnlyY;
zoomSets.MovementOnlyYPosition= MovementOnlyYPosition;
uePackage.UE_Presets.StartSets.ZoomSets = zoomSets;
var enableStates = new EnableStats();
enableStates.bEnableSpline = BEnableSpline;
enableStates.bShowHeight = ShowHeight;
enableStates.bShowSpeed = ShowSpeed;
enableStates.bEnableZoom = UseZoom;
uePackage.UE_Presets.StartSets.EnableStats = enableStates;
var splineSets = new SplineSets();
splineSets.bLineBehind = Line;
uePackage.UE_Presets.StartSets.SplineSets = splineSets;
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;
//发送自定义预设参数
string msg = uePackage == null ? string.Empty : JsonConvert.SerializeObject(uePackage, JSON_SERIALIZER_SETTINGS);
manager.SendJson(uePackage);
#region 项目预设数据保存到LiteDB
//string msg = uePackage == null ? string.Empty : JsonConvert.SerializeObject(uePackage, JSON_SERIALIZER_SETTINGS);
//JavelinThrowConfig javelinThrowConfig = new JavelinThrowConfig();
//this.javelinThrowConfig = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindAll().FirstOrDefault();
//if (javelinThrowConfig == null) return;
//javelinThrowConfig.Number = "JT";
//javelinThrowConfig.Data = msg;
//ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.Upsert(javelinThrowConfig);
#endregion
}
public VCommand StartPackagingCommand { get; set; }
/// <summary>
/// 开始包装
......@@ -115,6 +196,20 @@ namespace VIZ.FGOUT.Module
SendJson("NoZoom");
}
public VCommand ShowLineCommand { get; set; }
private void ShowLine()
{
SendJson("ShowLine");
}
public VCommand HideLineCommand { get; set; }
private void HideLine()
{
SendJson("HideLine");
}
public VCommand BeforeDrawingLinePositionCommand { get; set; }
/// <summary>
/// 画线位置前
......@@ -139,14 +234,45 @@ namespace VIZ.FGOUT.Module
/// </summary>
private void SendPreset()
{
if(PresetsItem ==null)
return;
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager(_endpointKey);
if (manager == null) return;
if (PresetsItem.Equals("掷标枪"))
if (PresetsItem ==null)
return;
if (PresetsItem.Equals("Javelin Throw"))//掷标枪
manager.SendJsonString(javelinThrowConfig.Data);
//SendJson("UE_Presets");
}
public VCommand PresetsSelectionChangedCommand { get; set; }
private void PresetsSelectionChanged()
{
if (PresetsItem.Equals("Javelin Throw"))//掷标枪
{
//反序列化
var uePackage = (UEPackage)JsonConvert.DeserializeObject(javelinThrowConfig.Data, typeof(UEPackage));
var zoomSets = uePackage.UE_Presets.StartSets.ZoomSets;
ZoomEaseItem = zoomSets.ZoomEase;
MoveEaseItem = zoomSets.MoveEase;
Scale = zoomSets.Scale;
ZoomIn = zoomSets.ZoomIn;
ZoomOut = zoomSets.ZoomOut;
Move = zoomSets.Move;
SafeScale = zoomSets.SafeScale;
BMovementOnlyX = zoomSets.bMovementOnlyX;
MovementOnlyXPosition = zoomSets.MovementOnlyXPosition;
BMovementOnlyY = zoomSets.bMovementOnlyY;
MovementOnlyYPosition = zoomSets.MovementOnlyYPosition;
var enableStats = uePackage.UE_Presets.StartSets.EnableStats;
ShowHeight = enableStats.bShowHeight;
ShowSpeed = enableStats.bShowSpeed;
UseZoom = enableStats.bEnableZoom;
var splineSets = uePackage.UE_Presets.StartSets.SplineSets;
Line = splineSets.bLineBehind;
}
}
/// <summary>
/// 发送JSON数据
/// </summary>
......@@ -163,11 +289,25 @@ namespace VIZ.FGOUT.Module
public VCommand DetailCommand { get; set; }
bool _isDetail = false;
private void Detail()
{
UESettingVisibility = Visibility.Visible;
if(WindowWidth ==400)
WindowWidth += 800;
if (_isDetail)
{
UESettingVisibility = Visibility.Collapsed;
if (WindowWidth == 900)
WindowWidth -= 600;
_isDetail = false;
DetailContent = "Detail";
}
else
{
UESettingVisibility = Visibility.Visible;
if (WindowWidth == 300)
WindowWidth += 600;
_isDetail = true;
DetailContent = "Hide";
}
}
public VCommand CancelCommand { get; set; }
......@@ -175,8 +315,8 @@ namespace VIZ.FGOUT.Module
private void Cancel()
{
UESettingVisibility = Visibility.Collapsed;
if (WindowWidth == 1200)
WindowWidth -= 800;
if (WindowWidth == 900)
WindowWidth -= 600;
}
#region 属性
......@@ -206,6 +346,17 @@ namespace VIZ.FGOUT.Module
}
}
private string _detailContent = "Detail";
public string DetailContent
{
get => _detailContent;
set
{
_detailContent = value;
this.RaisePropertyChanged(nameof(DetailContent));
}
}
/// <summary>
/// UE设置部分显示隐藏
/// </summary>
......@@ -220,7 +371,7 @@ namespace VIZ.FGOUT.Module
}
}
private double _windowWidth = 400;
private double _windowWidth = 300;
public double WindowWidth
{
get => _windowWidth;
......@@ -232,5 +383,195 @@ namespace VIZ.FGOUT.Module
}
#endregion
#region 预设属性
private string _zoomEaseItem = string.Empty;
public string ZoomEaseItem
{
get => _zoomEaseItem;
set
{
_zoomEaseItem = value;
this.RaisePropertyChanged(nameof(ZoomEaseItem));
}
}
private string _moveEaseItem = string.Empty;
public string MoveEaseItem
{
get => _moveEaseItem;
set
{
_moveEaseItem = value;
this.RaisePropertyChanged(nameof(MoveEaseItem));
}
}
private double _scale;
public double Scale
{
get => this._scale;
set
{
_scale = value;
this.RaisePropertyChanged(nameof(Scale));
}
}
private bool _line;
public bool Line
{
get => _line;
set
{
_line = value;
this.RaisePropertyChanged(nameof(Line));
}
}
private double _zoomIn;
public double ZoomIn
{
get => _zoomIn;
set
{
_zoomIn = value;
this.RaisePropertyChanged(nameof(ZoomIn));
}
}
private double _zoomOut;
public double ZoomOut
{
get => _zoomOut;
set
{
_zoomOut = value;
this.RaisePropertyChanged(nameof(ZoomOut));
}
}
private double _move;
public double Move
{
get => _move;
set
{
_move = value;
this.RaisePropertyChanged(nameof(Move));
}
}
private double _safeScale;
public double SafeScale
{
get => _safeScale;
set
{
_safeScale = value;
this.RaisePropertyChanged(nameof(SafeScale));
}
}
private bool _showHeight = true;
public bool ShowHeight
{
get => _showHeight;
set
{
_showHeight = value;
this.RaisePropertyChanged(nameof(ShowHeight));
}
}
private bool _showSpeed = true;
public bool ShowSpeed
{
get => _showSpeed;
set
{
_showSpeed = value;
this.RaisePropertyChanged(nameof(ShowSpeed));
}
}
private bool _useZoom = false;
public bool UseZoom
{
get => _useZoom;
set
{
_useZoom = value;
this.RaisePropertyChanged(nameof(UseZoom));
}
}
private bool _bEnableSpline;
public bool BEnableSpline
{
get => _bEnableSpline;
set
{
_bEnableSpline = value;
this.RaisePropertyChanged(nameof(BEnableSpline));
}
}
private bool _bMovementOnlyX;
public bool BMovementOnlyX
{
get => _bMovementOnlyX;
set
{
_bMovementOnlyX = value;
this.RaisePropertyChanged(nameof(BMovementOnlyX));
}
}
private bool _bMovementOnlyY;
public bool BMovementOnlyY
{
get => _bMovementOnlyY;
set
{
_bMovementOnlyY = value;
this.RaisePropertyChanged(nameof(BMovementOnlyY));
}
}
private int _movementOnlyXPosition;
public int MovementOnlyXPosition
{
get => _movementOnlyXPosition;
set
{
_movementOnlyXPosition = value;
this.RaisePropertyChanged(nameof(MovementOnlyXPosition));
}
}
private int _movementOnlyYPosition;
public int MovementOnlyYPosition
{
get => _movementOnlyYPosition;
set
{
_movementOnlyYPosition = value;
this.RaisePropertyChanged(nameof(MovementOnlyYPosition));
}
}
#endregion
}
}
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "759DD8B3A1AA280562738CAE4EFCAC9A16C58AB9563E88D728D35F20FF6B5BA7"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0347975785EB8D0B2CAB944BBEB7B3F6D1C8069AB7CA02C4A73B61DBC4120CF3"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 297 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 299 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 315 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 317 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "759DD8B3A1AA280562738CAE4EFCAC9A16C58AB9563E88D728D35F20FF6B5BA7"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0347975785EB8D0B2CAB944BBEB7B3F6D1C8069AB7CA02C4A73B61DBC4120CF3"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -58,7 +58,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 297 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 299 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -66,7 +66,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 315 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 317 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......

D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs
FD:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;;
FD:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;;
......
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VIZ.FGOUT.Storage
namespace VIZ.FGOUT.Storage
{
public class JavelinThrowConfig
{
......
2023-08-18 11:23:16,935 [1] ERROR VIZ.Framework.Module.AppSetup - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 VIZ.Framework.Connection.UdpConnection.Binding(String ip, Int32 port) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 76
在 VIZ.FGOUT.Module.AppSetup_InitUDP.Setup(AppSetupContext context) 位置 D:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\Setup\Provider\AppSetup_InitUDP.cs:行号 55
在 VIZ.Framework.Module.AppSetup.Setup() 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Module\Setup\AppSetup.cs:行号 112
2023-08-18 14:08:12,828 [1] ERROR VIZ.Framework.Module.AppSetup - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
2023-08-23 10:31:10,898 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 10:55:15,879 [3] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 10:55:29,778 [11] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 11:01:28,205 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 11:37:21,483 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 11:40:12,899 [12] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 11:40:13,186 [10] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 13:55:48,736 [3] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 13:56:14,859 [3] ERROR VIZ.FGOUT.Module.AlgorithmControllerBase - 算法'Single'的启动路径:'C:\projects\org\person_v1.1.0.0\main_person_new22.py'不正确!
2023-08-23 14:40:23,483 [1] ERROR VIZ.Framework.Module.AppSetup - System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 VIZ.Framework.Connection.UdpConnection.Binding(String ip, Int32 port) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 76
在 VIZ.FGOUT.Module.AppSetup_InitUDP.Setup(AppSetupContext context) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\Setup\Provider\AppSetup_InitUDP.cs:行号 55
在 VIZ.Framework.Module.AppSetup.Setup() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Module\Setup\AppSetup.cs:行号 112
2023-08-18 16:12:13,035 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 147
在 VIZ.FGOUT.Module.UEControlPanelViewModel.AfterDrawingTheLinePosition() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 125
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:35,990 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:36,877 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:37,705 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:38,320 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:39,488 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:40,692 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:43,820 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:46,104 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:47,994 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:36:55,243 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:37:01,217 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:37:10,873 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 148
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 135
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 16:53:18,169 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 151
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 138
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:23:38,699 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:23:41,724 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 159
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StartPackaging() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 49
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:23:43,350 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 159
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StartPackaging() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 49
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:23:44,572 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 159
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StopPackaging() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 59
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:24:14,612 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:24:24,025 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:24:26,301 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:24:33,428 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:24:41,277 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:25:00,654 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:25:37,669 [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.SendJsonString(UdpEndpointManager manager, String msg) 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpEndpointManagerExpand.cs:行号 79
在 VIZ.FGOUT.Module.UEControlPanelViewModel.SendPreset() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 145
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:25:45,572 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 159
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StartPackaging() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 49
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:27:37,132 [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.UEControlPanelViewModel.SendJson(String ueEventStr) 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 159
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StartPackaging() 位置 D:\wyh\FGOUT\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\ViewModel\UEControlPanelViewModel.cs:行号 49
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:32:05,002 [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.UEControlPanelViewModel.SendJson(String ueEventStr)
在 VIZ.FGOUT.Module.UEControlPanelViewModel.StartPackaging()
在 VIZ.Framework.Core.VCommand.Execute(Object parameter) 位置 D:\Projects\FGOUT\VIZ.Framework\VIZ.Framework.Core\Core\WPF\VCommand.cs:行号 108
2023-08-18 17:32:33,504 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-18 17:32:49,960 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-18 17:37:23,822 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
2023-08-23 14:41:27,753 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:29,406 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:30,025 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:30,667 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:31,806 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:33,008 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:34,174 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:35,325 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:36,007 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:36,934 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:40,152 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:41,151 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:42,125 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:43,740 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:44,896 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:44,951 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:46,091 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:47,718 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:56,336 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:57,492 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:58,655 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:41:59,280 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:47,646 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:48,837 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:51,057 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:51,550 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:52,174 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:43:53,293 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:46:30,261 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“r”资源。
在 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-23 14:46:31,694 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“R”资源。
在 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-23 14:49:11,232 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:13,361 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:14,902 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:16,260 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:17,927 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:19,076 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:20,742 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:21,354 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:21,909 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:22,522 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:23,122 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:23,726 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:42,860 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:44,577 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:45,761 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:49:49,693 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:37,820 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:39,023 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:40,174 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:41,683 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:42,975 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:44,466 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:46,374 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:46,991 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:48,656 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 14:54:49,820 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:07:00,817 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:07:02,021 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:07:58,213 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“ra”资源。
在 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-23 15:08:06,679 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“r”资源。
在 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-23 15:21:41,837 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:21:44,101 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:21:45,795 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:21:46,968 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:21:48,740 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:23:09,612 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:23:10,815 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:23:11,937 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:23:13,038 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 15:30:54,426 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“te”资源。
在 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-23 15:36:07,732 [1] ERROR VIZ.Framework.Module.AppSetup_CatchUnhandledException - System.Windows.ResourceReferenceKeyNotFoundException: 未找到“tex”资源。
在 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-23 15:47:37,168 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 16:13:04,733 [6] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 一个封锁操作被对 WSACancelBlockingCall 的调用中断。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 16:45:41,486 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 16:45:49,128 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 16:46:16,916 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 16:46:22,031 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:32:30,103 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:32:34,614 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:32:36,920 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:32:38,078 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:32:42,608 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:35:49,715 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:35:50,941 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:35:51,434 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:35:56,622 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:35:57,233 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 17:36:02,325 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 18:15:03,435 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
2023-08-23 18:15:04,603 [8] ERROR VIZ.Framework.Connection.UdpConnection - System.Net.Sockets.SocketException (0x80004005): 远程主机强迫关闭了一个现有的连接。
在 System.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
在 System.Net.Sockets.UdpClient.Receive(IPEndPoint& remoteEP)
在 VIZ.Framework.Connection.UdpConnection.ReceiveMessage() 位置 D:\wyh\FGOUT\FGOUT\VIZ.Framework\VIZ.Framework.Connection\Protocol\UDP\UdpConnection.cs:行号 168
This source diff could not be displayed because it is too large. You can view the blob instead.

//------------------------------------------------------------------------------
// <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
DEBUG;TRACE
15488264905
15-721109437
1191075600146
441844013281
119995838038
441493541907
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;
False
True
cc6ac8d24f7c854088bbde40ffba72e5277babac
7778f4f222d616369336429c96e8b4a996e6ea42
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