1
This commit is contained in:
parent
c985543ec8
commit
3835fc2363
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1
Normal file
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1
Normal file
Binary file not shown.
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1
Normal file
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1
Normal file
Binary file not shown.
@ -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="锚点移位和姿态监测系统" />
|
||||
<Grid Grid.Column="2">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
|
||||
@ -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 + "%。" };
|
||||
|
||||
@ -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<AlarmInfo>();
|
||||
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)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
10
bin/Debug/net6.0-windows/数据记录/2024_03_14/Log.txt
Normal file
10
bin/Debug/net6.0-windows/数据记录/2024_03_14/Log.txt
Normal file
@ -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
|
||||
120
bin/Debug/net6.0-windows/数据记录/2024_03_14/原始报文.txt
Normal file
120
bin/Debug/net6.0-windows/数据记录/2024_03_14/原始报文.txt
Normal file
@ -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
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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;;
|
||||
|
||||
|
||||
@ -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;;
|
||||
|
||||
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -1,62 +1,2 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace XamlGeneratedNamespace {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// GeneratedInternalTypeHelper
|
||||
/// </summary>
|
||||
[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 {
|
||||
|
||||
/// <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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "492D0989981B8838C93834507C7C24E7F6B54CAA"
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A0230CA9552683E5026B4739B10858D9AD83EA4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "492D0989981B8838C93834507C7C24E7F6B54CAA"
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A0230CA9552683E5026B4739B10858D9AD83EA4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user