diff --git a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 index 4dac19c..3d9c1f6 100644 Binary files a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 and b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2 b/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2 index d752754..d1921d2 100644 Binary files a/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2 and b/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2 differ diff --git a/.vs/20230724_MBJC_upperpc/v17/.suo b/.vs/20230724_MBJC_upperpc/v17/.suo index ba02d7e..6317df8 100644 Binary files a/.vs/20230724_MBJC_upperpc/v17/.suo and b/.vs/20230724_MBJC_upperpc/v17/.suo differ diff --git a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 new file mode 100644 index 0000000..4a908e6 Binary files /dev/null and b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 differ diff --git a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 new file mode 100644 index 0000000..e1ddffe Binary files /dev/null and b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 differ diff --git a/MainWindow.xaml b/MainWindow.xaml index 0871259..0e6dee6 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -9,7 +9,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:views="clr-namespace:_20230724_MBJC_upperpc.Views" Name="Window" - Title="锚点监测项目" + Title="锚点移位和姿态监测系统" Width="1600" Height="900" MinWidth="1600" @@ -141,7 +141,7 @@ VerticalAlignment="Center" FontSize="30" Foreground="White" - Text="锚点监测项目" /> + Text="锚点移位和姿态监测系统" /> diff --git a/ViewModels/BeaconViewModel.cs b/ViewModels/BeaconViewModel.cs index 67a3b13..7651f67 100644 --- a/ViewModels/BeaconViewModel.cs +++ b/ViewModels/BeaconViewModel.cs @@ -214,6 +214,8 @@ namespace _20230724_MBJC_upperpc.ViewModels AlarmInfo alarmInfo = null; #region 保存告警信息 + if (MainWindow.viewModel == null) + return; if (AlarmInfo.PY_JL > 1) { alarmInfo = new AlarmInfo() { StationID = Beacon.ID, RecordTime = System.DateTime.Now, ParaName = "偏移距离", ParaState = "偏移距离" + AlarmInfo.PY_JL + "米,达到极限距离的" + AlarmInfo.PYPercent_JL * 100 + "%。" }; diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs index d3fe864..ee65af9 100644 --- a/ViewModels/MainViewModel.cs +++ b/ViewModels/MainViewModel.cs @@ -162,262 +162,53 @@ namespace _20230724_MBJC_upperpc.ViewModels SearchAlarmInfo("1"); #region 初始化数据 - string sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon1"))); + AlarmInfoList = new ObservableCollection(); + Beacon1.Beacon = InitData("Beacon1"); + Beacon2.Beacon = InitData("Beacon2"); + Beacon3.Beacon = InitData("Beacon3"); + Beacon4.Beacon = InitData("Beacon4"); + Beacon5.Beacon = InitData("Beacon5"); + Beacon6.Beacon = InitData("Beacon6"); + Beacon7.Beacon = InitData("Beacon7"); + Beacon8.Beacon = InitData("Beacon8"); + #endregion + } + + private BeaconModel InitData(string stationName) + { + BeaconModel beaconModel = new BeaconModel(); + string sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting(stationName))); MySqlDataReader reader = DBHelper.ExecuteReader(sql, 1); while (reader.Read()) { - Beacon1.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon1.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon1.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon1.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon1.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon1.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon1.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon1.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon1.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon1.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon1.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon1.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon1.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon1.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon1.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon1.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon1.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon1.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon1.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon1.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon1.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon1.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon1.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon1.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon1.Beacon.Temp = Convert.ToSingle(reader["Temp"]); + beaconModel.ID = Convert.ToInt32(reader["StationID"]); + beaconModel.Datetime = Convert.ToDateTime(reader["Datetime"]); + beaconModel.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); + beaconModel.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); + beaconModel.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); + beaconModel.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); + beaconModel.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); + beaconModel.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); + beaconModel.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); + beaconModel.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); + beaconModel.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); + beaconModel.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); + beaconModel.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); + beaconModel.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); + beaconModel.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); + beaconModel.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); + beaconModel.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); + beaconModel.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); + beaconModel.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); + beaconModel.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); + beaconModel.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); + beaconModel.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); + beaconModel.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); + beaconModel.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); + beaconModel.Temp = Convert.ToSingle(reader["Temp"]); } reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon2"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon2.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon2.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon2.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon2.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon2.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon2.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon2.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon2.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon2.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon2.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon2.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon2.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon2.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon2.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon2.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon2.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon2.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon2.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon2.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon2.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon2.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon2.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon2.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon2.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon2.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon3"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon3.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon3.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon3.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon3.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon3.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon3.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon3.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon3.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon3.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon3.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon3.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon3.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon3.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon3.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon3.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon3.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon3.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon3.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon3.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon3.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon3.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon3.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon3.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon3.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon3.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon4"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon4.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon4.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon4.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon4.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon4.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon4.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon4.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon4.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon4.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon4.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon4.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon4.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon4.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon4.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon4.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon4.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon4.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon4.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon4.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon4.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon4.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon4.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon4.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon4.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon4.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon5"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon5.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon5.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon5.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon5.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon5.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon5.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon5.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon5.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon5.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon5.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon5.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon5.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon5.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon5.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon5.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon5.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon5.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon5.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon5.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon5.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon5.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon5.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon5.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon5.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon5.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon6"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon6.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon6.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon6.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon6.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon6.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon6.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon6.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon6.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon6.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon6.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon6.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon6.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon6.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon6.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon6.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon6.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon6.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon6.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon6.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon6.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon6.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon6.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon6.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon6.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon6.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon7"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon7.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon7.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon7.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon7.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon7.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon7.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon7.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon7.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon7.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon7.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon7.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon7.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon7.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon7.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon7.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon7.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon7.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon7.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon7.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon7.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon7.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon7.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon7.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon7.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon7.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - - sql = string.Format("select * from beaconmodel where StationID = {0} ORDER by id desc limit 1", int.Parse(tools.GetAppSetting("Beacon8"))); - reader = DBHelper.ExecuteReader(sql, 1); - while (reader.Read()) - { - Beacon8.Beacon.ID = Convert.ToInt32(reader["StationID"]); - Beacon8.Beacon.Datetime = Convert.ToDateTime(reader["Datetime"]); - Beacon8.Beacon.Ralative_Heading_Angle = Convert.ToSingle(reader["Ralative_Heading_Angle"]); - Beacon8.Beacon.Ralative_Pitch_Angle = Convert.ToSingle(reader["Ralative_Pitch_Angle"]); - Beacon8.Beacon.Position_Distance = Convert.ToSingle(reader["Position_Distance"]); - Beacon8.Beacon.Propagationtime = Convert.ToSingle(reader["Propagationtime"]); - Beacon8.Beacon.BasicSite_JD = Convert.ToSingle(reader["BasicSite_JD"]); - Beacon8.Beacon.BasicSite_WD = Convert.ToSingle(reader["BasicSite_WD"]); - Beacon8.Beacon.BasicSite_Depth = Convert.ToSingle(reader["BasicSite_Depth"]); - Beacon8.Beacon.BasicSite_Heading_Angle = Convert.ToSingle(reader["BasicSite_Heading_Angle"]); - Beacon8.Beacon.BasicSite_Pitch_Angle = Convert.ToSingle(reader["BasicSite_Pitch_Angle"]); - Beacon8.Beacon.BasicSite_Roll_Angle = Convert.ToSingle(reader["BasicSite_Roll_Angle"]); - Beacon8.Beacon.BasicSite_Heading_Speed = Convert.ToSingle(reader["BasicSite_Heading_Speed"]); - Beacon8.Beacon.BasicSite_Pitch_Speed = Convert.ToSingle(reader["BasicSite_Pitch_Speed"]); - Beacon8.Beacon.BasicSite_Roll_Speed = Convert.ToSingle(reader["BasicSite_Roll_Speed"]); - Beacon8.Beacon.BasicSite_Forword_A = Convert.ToSingle(reader["BasicSite_Forword_A"]); - Beacon8.Beacon.BasicSite_Right_A = Convert.ToSingle(reader["BasicSite_Right_A"]); - Beacon8.Beacon.BasicSite_Sky_A = Convert.ToSingle(reader["BasicSite_Sky_A"]); - Beacon8.Beacon.Beacon_JD = Convert.ToSingle(reader["Beacon_JD"]); - Beacon8.Beacon.Beacon_WD = Convert.ToSingle(reader["Beacon_WD"]); - Beacon8.Beacon.Beacon_Depth = Convert.ToSingle(reader["Beacon_Depth"]); - Beacon8.Beacon.Beacon_Roll_Angle = Convert.ToSingle(reader["Beacon_Roll_Angle"]); - Beacon8.Beacon.Beacon_Pitch_Angle = Convert.ToSingle(reader["Beacon_Pitch_Angle"]); - Beacon8.Beacon.Beacon_Heading_Angle = Convert.ToSingle(reader["Beacon_Heading_Angle"]); - Beacon8.Beacon.Temp = Convert.ToSingle(reader["Temp"]); - } - reader.Dispose(); - #endregion + return beaconModel; } public void SearchAlarmInfo(object obj) diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll index 2d55bb0..8073298 100644 Binary files a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll and b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll differ diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb index 82799a6..f5e89e2 100644 Binary files a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb and b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb differ diff --git a/bin/Debug/net6.0-windows/数据记录/2024_03_14/Log.txt b/bin/Debug/net6.0-windows/数据记录/2024_03_14/Log.txt new file mode 100644 index 0000000..cc78ce2 --- /dev/null +++ b/bin/Debug/net6.0-windows/数据记录/2024_03_14/Log.txt @@ -0,0 +1,10 @@ +2024-03-14 13:41:42 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 13:44:05 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 13:53:17 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 13:54:47 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 13:55:06 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 13:55:59 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 14:00:05 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 14:02:07 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-03-14 14:14:41 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-03-14 15:10:07 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 diff --git a/bin/Debug/net6.0-windows/数据记录/2024_03_14/原始报文.txt b/bin/Debug/net6.0-windows/数据记录/2024_03_14/原始报文.txt new file mode 100644 index 0000000..1d69973 --- /dev/null +++ b/bin/Debug/net6.0-windows/数据记录/2024_03_14/原始报文.txt @@ -0,0 +1,120 @@ +2024-03-14 14:16:34 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:16:41 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:08 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:11 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:30 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:32 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:33 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:35 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:35 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:36 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:36 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:36 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:37 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:37 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:38 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:38 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:39 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:40 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:40 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:41 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:42 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:42 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:42 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:43 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:44 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:44 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:45 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:45 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:46 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:46 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:46 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:47 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:47 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:47 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:47 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:48 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:48 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:48 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:48 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:49 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:49 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:50 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:50 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:50 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:50 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:50 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:51 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:51 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:51 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:51 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:52 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:52 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:52 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:52 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:52 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:53 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:54 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:55 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:56 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:56 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:56 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:56 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:57 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:39:58 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:58 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:58 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:58 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:58 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:39:59 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:00 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:01 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:02 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:03 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:04 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:04 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:04 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:04 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:04 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 +2024-03-14 14:40:43 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.206126,0.100000,-107.300003,2.310000,-2.290000,32.570000 +2024-03-14 14:40:47 ---- $SMBXS,25,1709967388,-11.760000,25.570000,0.960000,0.000633,109.483379,18.206131,0.220000,116.080299,-2.540000,0.780000,,,,,,,109.483387,18.217126,0.100000,-107.300003,20.310000,-20.290000,32.570000 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll index 2d55bb0..8073298 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources index 14aafeb..fe020f9 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb index 82799a6..f5e89e2 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref index 65b8419..f626e2c 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref @@ -1,16 +1,5 @@ -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.i.cs -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\FirstWindow.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorModel.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorPointView.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyModel.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyPlatformView.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageAnchorControl.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageSupportControl.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\InitialView.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\ProgressView.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\SupportModel.xaml;; + + +FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;; +FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyPlatformView.xaml;; diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref index 0262ccb..6483c19 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref @@ -1,4 +1,4 @@ - +D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.cs FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml;; FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\FirstWindow.xaml;; FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;; diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.assets.cache new file mode 100644 index 0000000..ee990f1 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_a5tpzjf3_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.assets.cache new file mode 100644 index 0000000..c39fb8c Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gxoyy20y_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.assets.cache new file mode 100644 index 0000000..3f4c544 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ju01pvyo_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.assets.cache new file mode 100644 index 0000000..abb043d Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mt3t0aa2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.assets.cache new file mode 100644 index 0000000..c9d19a8 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_q1vvi52s_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.assets.cache new file mode 100644 index 0000000..f5fde23 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_r1hvlwn4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.assets.cache new file mode 100644 index 0000000..91f3b52 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ry54lnmt_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7964348 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.assets.cache new file mode 100644 index 0000000..1f41f0d Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_wbenfrvi_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs index 6e2e519..c65238f 100644 --- a/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs +++ b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs @@ -1,62 +1,2 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -namespace XamlGeneratedNamespace { - - - /// - /// GeneratedInternalTypeHelper - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { - - /// - /// CreateInstance - /// - 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); - } - - /// - /// GetPropertyValue - /// - 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); - } - - /// - /// SetPropertyValue - /// - 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); - } - - /// - /// CreateDelegate - /// - 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))); - } - - /// - /// AddEventHandler - /// - protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { - eventInfo.AddEventHandler(target, handler); - } - } -} + diff --git a/obj/Debug/net6.0-windows/MainWindow.baml b/obj/Debug/net6.0-windows/MainWindow.baml index ba9aeb0..ab36845 100644 Binary files a/obj/Debug/net6.0-windows/MainWindow.baml and b/obj/Debug/net6.0-windows/MainWindow.baml differ diff --git a/obj/Debug/net6.0-windows/MainWindow.g.cs b/obj/Debug/net6.0-windows/MainWindow.g.cs index 5f527ec..c81b46e 100644 --- a/obj/Debug/net6.0-windows/MainWindow.g.cs +++ b/obj/Debug/net6.0-windows/MainWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "492D0989981B8838C93834507C7C24E7F6B54CAA" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A0230CA9552683E5026B4739B10858D9AD83EA4" //------------------------------------------------------------------------------ // // 此代码由工具生成。 diff --git a/obj/Debug/net6.0-windows/MainWindow.g.i.cs b/obj/Debug/net6.0-windows/MainWindow.g.i.cs index 5f527ec..c81b46e 100644 --- a/obj/Debug/net6.0-windows/MainWindow.g.i.cs +++ b/obj/Debug/net6.0-windows/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "492D0989981B8838C93834507C7C24E7F6B54CAA" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A0230CA9552683E5026B4739B10858D9AD83EA4" //------------------------------------------------------------------------------ // // 此代码由工具生成。 diff --git a/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll index 6eec727..48c454f 100644 Binary files a/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll differ diff --git a/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll index 6eec727..48c454f 100644 Binary files a/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll differ