diff --git a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2
index 6802e4d..e3d83d8 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/FileContentIndex/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx
new file mode 100644
index 0000000..9c4478e
Binary files /dev/null and b/.vs/20230724_MBJC_upperpc/FileContentIndex/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/5c1dd11b-a015-4cfe-a42e-0e0cc8c48729.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/5c1dd11b-a015-4cfe-a42e-0e0cc8c48729.vsidx
deleted file mode 100644
index c2a38bc..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/5c1dd11b-a015-4cfe-a42e-0e0cc8c48729.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/01808bd9-c095-4dfb-87cc-91a1f7a34b04.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/838bbbf5-d724-478d-9d17-96a875e5ad53.vsidx
similarity index 100%
rename from .vs/20230724_MBJC_upperpc/FileContentIndex/01808bd9-c095-4dfb-87cc-91a1f7a34b04.vsidx
rename to .vs/20230724_MBJC_upperpc/FileContentIndex/838bbbf5-d724-478d-9d17-96a875e5ad53.vsidx
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx
new file mode 100644
index 0000000..62aaef2
Binary files /dev/null and b/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/cb441f14-f043-45f8-83a2-dbdeeb358ba0.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/cb441f14-f043-45f8-83a2-dbdeeb358ba0.vsidx
deleted file mode 100644
index 83faaaa..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/cb441f14-f043-45f8-83a2-dbdeeb358ba0.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2 b/.vs/20230724_MBJC_upperpc/v17/.futdcache.v2
index baea39c..1fe0c7b 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 263f34f..1d0be49 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
index 08bc43c..6a39c6f 100644
Binary files a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 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
index d4fc999..8e5ffa9 100644
Binary files a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 and b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 differ
diff --git a/Models/ClientModel.cs b/Models/ClientModel.cs
index b32c0f1..a4c51d1 100644
--- a/Models/ClientModel.cs
+++ b/Models/ClientModel.cs
@@ -116,28 +116,28 @@ namespace _20230724_MBJC_upperpc.Models
switch (beacon.ID)
{
case 1:
- MainWindow.viewModel.Beacon1 = beacon;
+ MainWindow.viewModel.Beacon1.Beacon = beacon;
break;
case 2:
- MainWindow.viewModel.Beacon2 = beacon;
+ MainWindow.viewModel.beacon2.Beacon = beacon;
break;
case 3:
- MainWindow.viewModel.Beacon3 = beacon;
+ MainWindow.viewModel.beacon3.Beacon = beacon;
break;
case 4:
- MainWindow.viewModel.Beacon4 = beacon;
+ MainWindow.viewModel.beacon4.Beacon = beacon;
break;
case 5:
- MainWindow.viewModel.Beacon5 = beacon;
+ MainWindow.viewModel.beacon5.Beacon = beacon;
break;
case 6:
- MainWindow.viewModel.Beacon6 = beacon;
+ MainWindow.viewModel.beacon6.Beacon = beacon;
break;
case 7:
- MainWindow.viewModel.Beacon7 = beacon;
+ MainWindow.viewModel.beacon7.Beacon = beacon;
break;
case 8:
- MainWindow.viewModel.Beacon8 = beacon;
+ MainWindow.viewModel.beacon8.Beacon = beacon;
break;
default:
break;
diff --git a/ViewModels/BeaconViewModel.cs b/ViewModels/BeaconViewModel.cs
new file mode 100644
index 0000000..b7e9bdb
--- /dev/null
+++ b/ViewModels/BeaconViewModel.cs
@@ -0,0 +1,23 @@
+using _20230724_MBJC_upperpc.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace _20230724_MBJC_upperpc.ViewModels
+{
+ public class BeaconViewModel : NotifyBase
+ {
+ public BeaconModel Beacon = new BeaconModel();
+
+ private int model_Visibility = 1;
+
+ public int Model_Visibility
+ {
+ get { return model_Visibility; }
+ set { model_Visibility = value; this.DoNotify(); }
+ }
+
+ }
+}
diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs
index d45376f..b540832 100644
--- a/ViewModels/MainViewModel.cs
+++ b/ViewModels/MainViewModel.cs
@@ -31,69 +31,29 @@ namespace _20230724_MBJC_upperpc.ViewModels
set { _pageContent = value; this.DoNotify(); }
}
#region
- private BeaconModel beacon1;
- public BeaconModel Beacon1
+ private int myVar;
+
+ public int MyProperty
+ {
+ get { return myVar; }
+ set { myVar = value; }
+ }
+
+ private BeaconViewModel beacon1 = new BeaconViewModel();
+
+ public BeaconViewModel Beacon1
{
get { return beacon1; }
set { beacon1 = value; this.DoNotify(); }
}
- private BeaconModel beacon2;
-
- public BeaconModel Beacon2
- {
- get { return beacon2; }
- set { beacon2 = value; this.DoNotify(); }
- }
- private BeaconModel beacon3;
-
- public BeaconModel Beacon3
- {
- get { return beacon3; }
- set { beacon3 = value; this.DoNotify(); }
- }
- private BeaconModel beacon4;
-
- public BeaconModel Beacon4
- {
- get { return beacon4; }
- set { beacon4 = value; this.DoNotify(); }
- }
- private BeaconModel beacon5;
-
- public BeaconModel Beacon5
- {
- get { return beacon5; }
- set { beacon5 = value; this.DoNotify(); }
- }
- private BeaconModel beacon6;
-
- public BeaconModel Beacon6
- {
- get { return beacon6; }
- set { beacon6 = value; this.DoNotify(); }
- }
- private BeaconModel beacon7;
- ///
- /// 基准点1
- ///
- public BeaconModel Beacon7
- {
- get { return beacon7; }
- set { beacon7 = value; this.DoNotify(); }
- }
- private BeaconModel beacon8;
- ///
- /// 基准点2
- ///
- public BeaconModel Beacon8
- {
- get { return beacon8; }
- set { beacon8 = value; this.DoNotify(); }
- }
-
-
-
+ public BeaconViewModel beacon2 = new BeaconViewModel();
+ public BeaconViewModel beacon3 = new BeaconViewModel();
+ public BeaconViewModel beacon4 = new BeaconViewModel();
+ public BeaconViewModel beacon5 = new BeaconViewModel();
+ public BeaconViewModel beacon6 = new BeaconViewModel();
+ public BeaconViewModel beacon7 = new BeaconViewModel() { Model_Visibility = 2 };
+ public BeaconViewModel beacon8 = new BeaconViewModel() { Model_Visibility = 2 };
#endregion
@@ -116,7 +76,7 @@ namespace _20230724_MBJC_upperpc.ViewModels
Port = int.Parse(tools.GetAppSetting("BasicPort")),
};
//基阵客户端连接和断开的操作
- public CommandBase ConnectCommand { get; set; }
+ public CommandBase ConnectCommand { get; set; }
public MainViewModel()
@@ -137,15 +97,23 @@ namespace _20230724_MBJC_upperpc.ViewModels
public void DoNavChanged(object obj)
{
- if (Title_Name == obj.ToString())
- return;
- Title_Name = obj.ToString();
-
- if (Title_Name != "FirstPageView" && Title_Name != "BuoyPlatformView")
+ //如果重复点击 就禁止切换
+ if ((string)obj == "FirstPageView" || (string)obj == "BuoyPlatformView")
{
+ if (Title_Name == (string)obj)
+ return;
+ Title_Name = (string)obj;
+ }
+ else if (((string)obj).StartsWith("Point") || ((string)obj).StartsWith("Benchmark"))
+ {
+ if (Title_Name == "AnchorPointView")
+ return;
Title_Name = "AnchorPointView";
}
-
+ else
+ {
+ return;
+ }
//切换页面之前清理一下内存
tools.ClearMemory(this);
diff --git a/Views/FirstPageAnchorControl.xaml.cs b/Views/FirstPageAnchorControl.xaml.cs
index 52ecbde..8ad72b7 100644
--- a/Views/FirstPageAnchorControl.xaml.cs
+++ b/Views/FirstPageAnchorControl.xaml.cs
@@ -69,18 +69,6 @@ namespace _20230724_MBJC_upperpc.Views
public static readonly DependencyProperty TBDEnableProperty = DependencyProperty.Register("TBDEnable", typeof(bool), typeof(FirstPageAnchorControl), new PropertyMetadata(default(bool), new PropertyChangedCallback(OnPropertyChanged)));
- ///
- /// 模型位置
- ///
- public int Model_Position
- {
- get { return (int)GetValue(Model_PositionProperty); }
- set { SetValue(Model_PositionProperty, value); }
- }
-
- public static readonly DependencyProperty Model_PositionProperty =
- DependencyProperty.Register("Model_Position", typeof(int), typeof(FirstPageAnchorControl), new PropertyMetadata(default(int), new PropertyChangedCallback(OnPropertyChanged)));
-
///
/// 选择那个模型进行显示
///
diff --git a/Views/FirstPageBuoyControl.xaml b/Views/FirstPageBuoyControl.xaml
index 62efba2..5eac3bc 100644
--- a/Views/FirstPageBuoyControl.xaml
+++ b/Views/FirstPageBuoyControl.xaml
@@ -17,7 +17,10 @@
-
+
@@ -45,6 +45,7 @@
+
+
+
+
+
+
+
+
-
-
+ -->
diff --git a/Views/FirstPageView.xaml.cs b/Views/FirstPageView.xaml.cs
index 8bdc464..ec0c18d 100644
--- a/Views/FirstPageView.xaml.cs
+++ b/Views/FirstPageView.xaml.cs
@@ -31,7 +31,6 @@ namespace _20230724_MBJC_upperpc.Views
{
InitializeComponent();
this.DataContext = MainWindow.viewModel;
-
}
diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
index 95d429b..6352049 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 bbe28b6..1504d5e 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_01_19/Log.txt b/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt
new file mode 100644
index 0000000..e9b8ef1
--- /dev/null
+++ b/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt
@@ -0,0 +1,27 @@
+2024-01-19 08:54:07 ---- 连接客户端失败,IP:127.0.0.1端口号:8899
+2024-01-19 09:46:27 ---- 连接客户端失败,IP:127.0.0.1端口号:8899
+2024-01-19 09:47:18 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:48:31 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:49:26 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:50:48 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:56:05 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:56:52 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:58:27 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:59:08 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:59:32 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 09:59:51 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:01:15 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:02:32 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:02:44 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:03:47 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:14:42 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:15:17 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:16:53 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:22:08 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:23:17 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:23:31 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:24:42 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:25:28 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:26:49 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:27:06 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
+2024-01-19 10:27:15 ---- 连接客户端成功,IP:127.0.0.1端口号:8899
diff --git a/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..197d927
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.dgspec.json
@@ -0,0 +1,81 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {}
+ },
+ "projects": {
+ "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "projectName": "20230724_MBJC_upperpc",
+ "projectPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "packagesPath": "C:\\Users\\86453\\.nuget\\packages\\",
+ "outputPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\86453\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "dependencies": {
+ "3DTools": {
+ "target": "Package",
+ "version": "[1.0.0, )"
+ },
+ "MaterialDesignThemes": {
+ "target": "Package",
+ "version": "[4.9.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.props
new file mode 100644
index 0000000..86bb915
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.props
@@ -0,0 +1,20 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages
+ PackageReference
+ 6.5.0
+
+
+
+
+
+
+ C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39
+ C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0
+
+
\ No newline at end of file
diff --git a/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.targets
new file mode 100644
index 0000000..bb14d9d
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_oev4p1xv_wpftmp.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..197d927
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.dgspec.json
@@ -0,0 +1,81 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {}
+ },
+ "projects": {
+ "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "projectName": "20230724_MBJC_upperpc",
+ "projectPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "packagesPath": "C:\\Users\\86453\\.nuget\\packages\\",
+ "outputPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\86453\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "dependencies": {
+ "3DTools": {
+ "target": "Package",
+ "version": "[1.0.0, )"
+ },
+ "MaterialDesignThemes": {
+ "target": "Package",
+ "version": "[4.9.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.props
new file mode 100644
index 0000000..86bb915
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.props
@@ -0,0 +1,20 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages
+ PackageReference
+ 6.5.0
+
+
+
+
+
+
+ C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39
+ C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0
+
+
\ No newline at end of file
diff --git a/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.targets
new file mode 100644
index 0000000..bb14d9d
--- /dev/null
+++ b/obj/20230724_MBJC_upperpc_okypwxqb_wpftmp.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache
index a532709..39ef42e 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-4e5a714df21ed2e2b8311a3caeb1df4644e1f1a0
+c13a43275a4cc88437576659cb791debaf9bae98
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
index 95d429b..6352049 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 1101755..8e8d237 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 bbe28b6..1504d5e 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_1xgoc2ua_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_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_1xgoc2ua_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_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_1xgoc2ua_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.assets.cache
new file mode 100644
index 0000000..58b7d47
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_1xgoc2ua_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_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_2cu2cxdy_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_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_2cu2cxdy_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.assets.cache
new file mode 100644
index 0000000..2b9844e
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2cu2cxdy_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache
index 901f11d..65a181e 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache
@@ -12,7 +12,7 @@ TRACE;DEBUG;NET;NET6_0;NETCOREAPP
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
13758307417
-32-950576055
+33-580596544
198-1745317550
FirstWindow.xaml;MainWindow.xaml;Views\AnchorModel.xaml;Views\AnchorPointView.xaml;Views\BuoyModel.xaml;Views\BuoyPlatformView.xaml;Views\FirstPageAnchorControl.xaml;Views\FirstPageBuoyControl.xaml;Views\FirstPageSupportControl.xaml;Views\FirstPageView.xaml;Views\InitialView.xaml;Views\ProgressView.xaml;Views\SupportModel.xaml;
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
index 7f9f666..e7c5c5f 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
@@ -12,7 +12,7 @@ TRACE;DEBUG;NET;NET6_0;NETCOREAPP
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
13758307417
-341577548477
+351947527988
198-1745317550
FirstWindow.xaml;MainWindow.xaml;Views\AnchorModel.xaml;Views\AnchorPointView.xaml;Views\BuoyModel.xaml;Views\BuoyPlatformView.xaml;Views\FirstPageAnchorControl.xaml;Views\FirstPageBuoyControl.xaml;Views\FirstPageSupportControl.xaml;Views\FirstPageView.xaml;Views\InitialView.xaml;Views\ProgressView.xaml;Views\SupportModel.xaml;
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 48635a4..a02ef8b 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,5 +1,9 @@
+FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.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\FirstPageAnchorControl.xaml;;
+FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;;
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_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_bcvb4yso_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_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_bcvb4yso_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.assets.cache
new file mode 100644
index 0000000..050b45e
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_bcvb4yso_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_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_deneecr3_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_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_deneecr3_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.assets.cache
new file mode 100644
index 0000000..2374abd
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_deneecr3_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_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_e0dxu5bw_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_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_e0dxu5bw_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.assets.cache
new file mode 100644
index 0000000..c5b2e79
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_e0dxu5bw_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_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_fto2el3z_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_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_fto2el3z_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.assets.cache
new file mode 100644
index 0000000..9e19db1
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fto2el3z_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_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_fvaxbfcl_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_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_fvaxbfcl_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.assets.cache
new file mode 100644
index 0000000..275dadc
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fvaxbfcl_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_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_i2qio1eo_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_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_i2qio1eo_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.assets.cache
new file mode 100644
index 0000000..c321608
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_i2qio1eo_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_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_if5f1hfe_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_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_if5f1hfe_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.assets.cache
new file mode 100644
index 0000000..bc4d28e
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_if5f1hfe_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_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_ikkguajp_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_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_ikkguajp_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.assets.cache
new file mode 100644
index 0000000..7890b06
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ikkguajp_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_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_j3htpyyd_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_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_j3htpyyd_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.assets.cache
new file mode 100644
index 0000000..cfa5ff8
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_j3htpyyd_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_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_kqruojuc_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_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_kqruojuc_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.assets.cache
new file mode 100644
index 0000000..16ed144
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_kqruojuc_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_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_lvmn2udm_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_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_lvmn2udm_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.assets.cache
new file mode 100644
index 0000000..4233ed3
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_lvmn2udm_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_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_nnorys51_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_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_nnorys51_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.assets.cache
new file mode 100644
index 0000000..e095038
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nnorys51_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_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_oev4p1xv_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_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_oev4p1xv_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.assets.cache
new file mode 100644
index 0000000..56c8d79
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_oev4p1xv_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_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_okypwxqb_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_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_okypwxqb_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.assets.cache
new file mode 100644
index 0000000..e0fb86b
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_okypwxqb_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_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_rwhkewma_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_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_rwhkewma_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.assets.cache
new file mode 100644
index 0000000..453cc17
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rwhkewma_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_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_spjx5mb2_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_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_spjx5mb2_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.assets.cache
new file mode 100644
index 0000000..55b9310
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_spjx5mb2_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_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_tolk3ntq_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_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_tolk3ntq_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.assets.cache
new file mode 100644
index 0000000..0ad38f1
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tolk3ntq_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_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_tpme0qb1_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_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_tpme0qb1_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.assets.cache
new file mode 100644
index 0000000..01ba5eb
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_tpme0qb1_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_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_xoyjmvnx_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_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_xoyjmvnx_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.assets.cache
new file mode 100644
index 0000000..69d3192
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xoyjmvnx_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..599871d
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_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_xr32ufum_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6175f8f
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+30a7b50224ea867d874cd87b220c9acbeaa9a3d3
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7964348
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_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_xr32ufum_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.assets.cache
new file mode 100644
index 0000000..0be54ed
Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_xr32ufum_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.baml b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.baml
index 7e3ba43..b8c6b64 100644
Binary files a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.baml and b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.baml differ
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs
index 1e4f8b7..66496b5 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\..\Views\FirstPageBuoyControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "10CDD2E33CF12FD170256F0BB43AADD1F1969131"
+#pragma checksum "..\..\..\..\Views\FirstPageBuoyControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6FDC736DC87399DB8042D1D9F2458393402980A5"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -54,7 +54,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
- #line 20 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 21 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal _20230724_MBJC_upperpc.Views.BuoyModel BuoyModel;
@@ -62,7 +62,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
- #line 42 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 45 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextJD;
@@ -70,7 +70,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
- #line 51 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 54 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextWD;
@@ -78,7 +78,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
- #line 62 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 65 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextSD;
@@ -86,7 +86,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
- #line 116 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 119 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button Bigger;
@@ -148,7 +148,7 @@ namespace _20230724_MBJC_upperpc.Views {
case 6:
this.Bigger = ((System.Windows.Controls.Button)(target));
- #line 121 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ #line 124 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
this.Bigger.Click += new System.Windows.RoutedEventHandler(this.OnButtonClick);
#line default
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
index 783f885..66496b5 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
@@ -1,5 +1,4 @@
-// Updated by XamlIntelliSenseFileGenerator 2024/1/17 9:19:53
-#pragma checksum "..\..\..\..\Views\FirstPageBuoyControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "10CDD2E33CF12FD170256F0BB43AADD1F1969131"
+#pragma checksum "..\..\..\..\Views\FirstPageBuoyControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6FDC736DC87399DB8042D1D9F2458393402980A5"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -38,129 +37,126 @@ using _20230724_MBJC_upperpc.Common;
using _20230724_MBJC_upperpc.Views;
-namespace _20230724_MBJC_upperpc.Views
-{
-
-
+namespace _20230724_MBJC_upperpc.Views {
+
+
///
/// FirstPageBuoyControl
///
- public partial class FirstPageBuoyControl : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector
- {
-
-#line default
-#line hidden
-
-
-#line 20 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ public partial class FirstPageBuoyControl : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
+
+
+ #line 10 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal _20230724_MBJC_upperpc.Views.FirstPageBuoyControl Window;
+
+ #line default
+ #line hidden
+
+
+ #line 21 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal _20230724_MBJC_upperpc.Views.BuoyModel BuoyModel;
-
-#line default
-#line hidden
-
-
-#line 42 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+
+ #line default
+ #line hidden
+
+
+ #line 45 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextJD;
-
-#line default
-#line hidden
-
-
-#line 51 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+
+ #line default
+ #line hidden
+
+
+ #line 54 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextWD;
-
-#line default
-#line hidden
-
-
-#line 62 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock TextSD;
-
-#line default
-#line hidden
-
-
-#line 116 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+
+ #line default
+ #line hidden
+
+
+ #line 119 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button Bigger;
-
-#line default
-#line hidden
-
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
-
+
///
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
- public void InitializeComponent()
- {
- if (_contentLoaded)
- {
+ public void InitializeComponent() {
+ if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpagebuoycontrol.xaml", System.UriKind.Relative);
-
-#line 1 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+
+ #line 1 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
-
-#line default
-#line hidden
+
+ #line default
+ #line hidden
}
-
+
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal System.Delegate _CreateDelegate(System.Type delegateType, string handler)
- {
+ internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
-
+
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
- {
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
- case 1:
- this.Window = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target));
- return;
- case 2:
- this.BuoyModel = ((_20230724_MBJC_upperpc.Views.BuoyModel)(target));
- return;
- case 3:
- this.TextJD = ((System.Windows.Controls.TextBlock)(target));
- return;
- case 4:
- this.TextWD = ((System.Windows.Controls.TextBlock)(target));
- return;
- case 5:
- this.TextSD = ((System.Windows.Controls.TextBlock)(target));
- return;
- case 6:
- this.Bigger = ((System.Windows.Controls.Button)(target));
-
-#line 121 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
- this.Bigger.Click += new System.Windows.RoutedEventHandler(this.OnButtonClick);
-
-#line default
-#line hidden
- return;
+ case 1:
+ this.Window = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target));
+ return;
+ case 2:
+ this.BuoyModel = ((_20230724_MBJC_upperpc.Views.BuoyModel)(target));
+ return;
+ case 3:
+ this.TextJD = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 4:
+ this.TextWD = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 5:
+ this.TextSD = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 6:
+ this.Bigger = ((System.Windows.Controls.Button)(target));
+
+ #line 124 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
+ this.Bigger.Click += new System.Windows.RoutedEventHandler(this.OnButtonClick);
+
+ #line default
+ #line hidden
+ return;
}
this._contentLoaded = true;
}
-
- internal System.Windows.Controls.UserControl Window;
}
}
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageView.baml b/obj/Debug/net6.0-windows/Views/FirstPageView.baml
index 868c823..44fdefc 100644
Binary files a/obj/Debug/net6.0-windows/Views/FirstPageView.baml and b/obj/Debug/net6.0-windows/Views/FirstPageView.baml differ
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs b/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs
index de61003..7161017 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DBDADADCAB2CDD1EDB537169C081EE0B60C4A434"
+#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5D7BCE2C1B177955888ABB4B09007A277B2EE332"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -64,70 +64,6 @@ namespace _20230724_MBJC_upperpc.Views {
#line default
#line hidden
-
- #line 49 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor1;
-
- #line default
- #line hidden
-
-
- #line 70 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor2;
-
- #line default
- #line hidden
-
-
- #line 90 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor3;
-
- #line default
- #line hidden
-
-
- #line 111 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor4;
-
- #line default
- #line hidden
-
-
- #line 131 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor5;
-
- #line default
- #line hidden
-
-
- #line 156 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor6;
-
- #line default
- #line hidden
-
-
- #line 180 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support1;
-
- #line default
- #line hidden
-
-
- #line 205 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support2;
-
- #line default
- #line hidden
-
private bool _contentLoaded;
///
@@ -171,30 +107,6 @@ namespace _20230724_MBJC_upperpc.Views {
case 2:
this.Buoy = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target));
return;
- case 3:
- this.Anchor1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 4:
- this.Anchor2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 5:
- this.Anchor3 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 6:
- this.Anchor4 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 7:
- this.Anchor5 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 8:
- this.Anchor6 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 9:
- this.Support1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 10:
- this.Support2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
}
this._contentLoaded = true;
}
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
index 9a717e8..7161017 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
@@ -1,5 +1,4 @@
-// Updated by XamlIntelliSenseFileGenerator 2024/1/17 9:22:49
-#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DBDADADCAB2CDD1EDB537169C081EE0B60C4A434"
+#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5D7BCE2C1B177955888ABB4B09007A277B2EE332"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -41,167 +40,76 @@ using _20230724_MBJC_upperpc.Views;
using _3DTools;
-namespace _20230724_MBJC_upperpc.Views
-{
-
-
+namespace _20230724_MBJC_upperpc.Views {
+
+
///
/// FirstPageView
///
- public partial class FirstPageView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector
- {
-
-#line default
-#line hidden
-
-
-#line 26 "..\..\..\..\Views\FirstPageView.xaml"
+ public partial class FirstPageView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
+
+
+ #line 11 "..\..\..\..\Views\FirstPageView.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal _20230724_MBJC_upperpc.Views.FirstPageView Window;
+
+ #line default
+ #line hidden
+
+
+ #line 26 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal _20230724_MBJC_upperpc.Views.FirstPageBuoyControl Buoy;
-
-#line default
-#line hidden
-
-
-#line 49 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor1;
-
-#line default
-#line hidden
-
-
-#line 70 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor2;
-
-#line default
-#line hidden
-
-
-#line 90 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor3;
-
-#line default
-#line hidden
-
-
-#line 111 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor4;
-
-#line default
-#line hidden
-
-
-#line 131 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor5;
-
-#line default
-#line hidden
-
-
-#line 156 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor6;
-
-#line default
-#line hidden
-
-
-#line 180 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support1;
-
-#line default
-#line hidden
-
-
-#line 205 "..\..\..\..\Views\FirstPageView.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support2;
-
-#line default
-#line hidden
-
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
-
+
///
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
- public void InitializeComponent()
- {
- if (_contentLoaded)
- {
+ public void InitializeComponent() {
+ if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpageview.xaml", System.UriKind.Relative);
-
-#line 1 "..\..\..\..\Views\FirstPageView.xaml"
+
+ #line 1 "..\..\..\..\Views\FirstPageView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
-
-#line default
-#line hidden
+
+ #line default
+ #line hidden
}
-
+
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal System.Delegate _CreateDelegate(System.Type delegateType, string handler)
- {
+ internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
-
+
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
- {
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
- case 1:
- this.Window = ((_20230724_MBJC_upperpc.Views.FirstPageView)(target));
- return;
- case 2:
- this.Buoy = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target));
- return;
- case 3:
- this.Anchor1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 4:
- this.Anchor2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 5:
- this.Anchor3 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 6:
- this.Anchor4 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 7:
- this.Anchor5 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 8:
- this.Anchor6 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 9:
- this.Support1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
- case 10:
- this.Support2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target));
- return;
+ case 1:
+ this.Window = ((_20230724_MBJC_upperpc.Views.FirstPageView)(target));
+ return;
+ case 2:
+ this.Buoy = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target));
+ return;
}
this._contentLoaded = true;
}
-
- internal System.Windows.Controls.UserControl Window;
}
}
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 2a61190..ac50685 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 2a61190..ac50685 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