增加了3DTools,鼠标交互事件

This commit is contained in:
Chen 2023-11-16 16:18:55 +08:00
parent 3e05d36350
commit 44400880e2
81 changed files with 523 additions and 30580 deletions

Binary file not shown.

View File

@ -9,6 +9,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="3DTools" Version="1.0.0" />
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" />
</ItemGroup>

View File

@ -8,7 +8,6 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="FirstWindow"
Width="1600"
Height="300"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="Microsoft YaHei"
FontSize="12"

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,7 @@ using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Navigation;
using System.Windows.Shapes;
@ -75,5 +76,10 @@ namespace _20230724_MBJC_upperpc.Views
//}
});
}
private void TrackballDecorator_MouseUp(object sender, MouseButtonEventArgs e)
{
Console.WriteLine();
}
}
}

View File

@ -8,12 +8,21 @@
".NETCoreApp,Version=v6.0": {
"20230724_MBJC_upperpc/1.0.0": {
"dependencies": {
"3DTools": "1.0.0",
"MaterialDesignThemes": "4.9.0"
},
"runtime": {
"20230724_MBJC_upperpc.dll": {}
}
},
"3DTools/1.0.0": {
"runtime": {
"lib/net6.0-windows7.0/3DTools.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"MaterialDesignColors/2.1.4": {
"runtime": {
"lib/net6.0/MaterialDesignColors.dll": {
@ -50,6 +59,13 @@
"serviceable": false,
"sha512": ""
},
"3DTools/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XzzijLAgIGXRK4q9SD9zyM4HV2Hf/P1xmLEA+40Hh9LhjAZZSUu4rlKPkA+V2OV3P34BvicmUd2W2YdjgpwxBA==",
"path": "3dtools/1.0.0",
"hashPath": "3dtools.1.0.0.nupkg.sha512"
},
"MaterialDesignColors/2.1.4": {
"type": "package",
"serviceable": true,

Binary file not shown.

View File

@ -45,6 +45,10 @@
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"dependencies": {
"3DTools": {
"target": "Package",
"version": "[1.0.0, )"
},
"MaterialDesignThemes": {
"target": "Package",
"version": "[4.9.0, )"

View File

@ -1 +1 @@
1db843bb26b7a0dcbe8722dd11532bd0a21f412b
71a54a269186d56bb969073c1962658d70ac4fab

View File

@ -26,3 +26,4 @@ D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_
D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\ref\20230724_MBJC_upperpc.dll
D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.g.cs
D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.baml
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\3DTools.dll

View File

@ -6,6 +6,14 @@
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"3DTools/1.0.0": {
"runtime": {
"lib/net6.0-windows7.0/3DTools.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"MaterialDesignColors/2.1.4": {
"runtime": {
"lib/net6.0/MaterialDesignColors.dll": {
@ -37,6 +45,13 @@
}
},
"libraries": {
"3DTools/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XzzijLAgIGXRK4q9SD9zyM4HV2Hf/P1xmLEA+40Hh9LhjAZZSUu4rlKPkA+V2OV3P34BvicmUd2W2YdjgpwxBA==",
"path": "3dtools/1.0.0",
"hashPath": "3dtools.1.0.0.nupkg.sha512"
},
"MaterialDesignColors/2.1.4": {
"type": "package",
"serviceable": true,

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -13,7 +13,7 @@ D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
2-1932936564
81699574642
197-104764271
198-1745317550
FirstWindow.xaml;Views\FirstPageView.xaml;
False

View File

@ -13,7 +13,7 @@ D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
2-1932936564
10-67268122
197-104764271
198-1745317550
FirstWindow.xaml;Views\FirstPageView.xaml;
True

View File

@ -1,5 +1,4 @@

FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\FirstWindow.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;;

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\FirstWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "28E7E3EDC7175CD5A6624AD0B31A77024CCA8F3B"
#pragma checksum "..\..\..\FirstWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B95FA368098B9ECC5702CF78759FB05BB5C5F54A"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -45,7 +45,7 @@ namespace _20230724_MBJC_upperpc {
public partial class FirstWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 19 "..\..\..\FirstWindow.xaml"
#line 18 "..\..\..\FirstWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal _20230724_MBJC_upperpc.FirstWindow Window;

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\FirstWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "28E7E3EDC7175CD5A6624AD0B31A77024CCA8F3B"
#pragma checksum "..\..\..\FirstWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B95FA368098B9ECC5702CF78759FB05BB5C5F54A"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -45,7 +45,7 @@ namespace _20230724_MBJC_upperpc {
public partial class FirstWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 19 "..\..\..\FirstWindow.xaml"
#line 18 "..\..\..\FirstWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal _20230724_MBJC_upperpc.FirstWindow Window;

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "82198EC0DEED30CB6F20ACDC7E91D758FDEA8287"
#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8FCD30F86FA4F10558E6AFA902BB1A41302493C0"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -31,6 +31,7 @@ using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using _20230724_MBJC_upperpc.Views;
using _3DTools;
namespace _20230724_MBJC_upperpc.Views {
@ -42,33 +43,17 @@ namespace _20230724_MBJC_upperpc.Views {
public partial class FirstPageView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 41 "..\..\..\..\Views\FirstPageView.xaml"
#line 17 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateX;
internal _3DTools.TrackballDecorator tra;
#line default
#line hidden
#line 52 "..\..\..\..\Views\FirstPageView.xaml"
#line 31 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateY;
#line default
#line hidden
#line 63 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateZ;
#line default
#line hidden
#line 69 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.ScaleTransform3D narrow_enlarge;
internal System.Windows.Media.Media3D.PerspectiveCamera camera1;
#line default
#line hidden
@ -104,20 +89,14 @@ namespace _20230724_MBJC_upperpc.Views {
switch (connectionId)
{
case 1:
this.rotateX = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
this.tra = ((_3DTools.TrackballDecorator)(target));
return;
case 2:
this.rotateY = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
this.camera1 = ((System.Windows.Media.Media3D.PerspectiveCamera)(target));
return;
case 3:
this.rotateZ = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
return;
case 4:
this.narrow_enlarge = ((System.Windows.Media.Media3D.ScaleTransform3D)(target));
return;
case 5:
#line 30564 "..\..\..\..\Views\FirstPageView.xaml"
#line 142 "..\..\..\..\Views\FirstPageView.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "82198EC0DEED30CB6F20ACDC7E91D758FDEA8287"
#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8FCD30F86FA4F10558E6AFA902BB1A41302493C0"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -31,6 +31,7 @@ using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using _20230724_MBJC_upperpc.Views;
using _3DTools;
namespace _20230724_MBJC_upperpc.Views {
@ -42,33 +43,17 @@ namespace _20230724_MBJC_upperpc.Views {
public partial class FirstPageView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 41 "..\..\..\..\Views\FirstPageView.xaml"
#line 17 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateX;
internal _3DTools.TrackballDecorator tra;
#line default
#line hidden
#line 52 "..\..\..\..\Views\FirstPageView.xaml"
#line 31 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateY;
#line default
#line hidden
#line 63 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateZ;
#line default
#line hidden
#line 69 "..\..\..\..\Views\FirstPageView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.ScaleTransform3D narrow_enlarge;
internal System.Windows.Media.Media3D.PerspectiveCamera camera1;
#line default
#line hidden
@ -85,7 +70,7 @@ namespace _20230724_MBJC_upperpc.Views {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpageview.xaml", System.UriKind.Relative);
System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/firstpageview.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\FirstPageView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@ -104,20 +89,14 @@ namespace _20230724_MBJC_upperpc.Views {
switch (connectionId)
{
case 1:
this.rotateX = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
this.tra = ((_3DTools.TrackballDecorator)(target));
return;
case 2:
this.rotateY = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
this.camera1 = ((System.Windows.Media.Media3D.PerspectiveCamera)(target));
return;
case 3:
this.rotateZ = ((System.Windows.Media.Media3D.AxisAngleRotation3D)(target));
return;
case 4:
this.narrow_enlarge = ((System.Windows.Media.Media3D.ScaleTransform3D)(target));
return;
case 5:
#line 30564 "..\..\..\..\Views\FirstPageView.xaml"
#line 142 "..\..\..\..\Views\FirstPageView.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default

View File

@ -2,6 +2,18 @@
"version": 3,
"targets": {
"net6.0-windows7.0": {
"3DTools/1.0.0": {
"type": "package",
"compile": {
"lib/net6.0-windows7.0/3DTools.dll": {}
},
"runtime": {
"lib/net6.0-windows7.0/3DTools.dll": {}
},
"frameworkReferences": [
"Microsoft.WindowsDesktop.App.WPF"
]
},
"MaterialDesignColors/2.1.4": {
"type": "package",
"compile": {
@ -54,6 +66,21 @@
}
},
"libraries": {
"3DTools/1.0.0": {
"sha512": "XzzijLAgIGXRK4q9SD9zyM4HV2Hf/P1xmLEA+40Hh9LhjAZZSUu4rlKPkA+V2OV3P34BvicmUd2W2YdjgpwxBA==",
"type": "package",
"path": "3dtools/1.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"3dtools.1.0.0.nupkg.sha512",
"3dtools.nuspec",
"lib/net35/3DTools.dll",
"lib/net48/3DTools.dll",
"lib/net5.0-windows7.0/3DTools.dll",
"lib/net6.0-windows7.0/3DTools.dll"
]
},
"MaterialDesignColors/2.1.4": {
"sha512": "C4Oy+qkjMoMPoZKyqYdCnIYtK8c0OSIHmNP73Vgc69NjiUG093xTkE7W/Ks54cTDS7fmWOtUHfwISTVTtb/YKg==",
"type": "package",
@ -147,6 +174,7 @@
},
"projectFileDependencyGroups": {
"net6.0-windows7.0": [
"3DTools >= 1.0.0",
"MaterialDesignThemes >= 4.9.0"
]
},
@ -195,6 +223,10 @@
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"dependencies": {
"3DTools": {
"target": "Package",
"version": "[1.0.0, )"
},
"MaterialDesignThemes": {
"target": "Package",
"version": "[4.9.0, )"

View File

@ -1,9 +1,10 @@
{
"version": 2,
"dgSpecHash": "zUZoc2lWfX4pLKOGAPXU1P5mkh5u4d8Y21gz51iAI2ldjN+5E/hp7oNLSjr6U6I/VIuHRA9u/BH9UTO5tpY99w==",
"dgSpecHash": "iQGKFAPIa9r6aiWRyPEPwdDUR/mQ3KtYfOC7BMC555hN/9vSpUIEDHyp0EgAqCbfaQOfsn8+5GK5ImAI2ZedMw==",
"success": true,
"projectFilePath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
"expectedPackageFiles": [
"C:\\Users\\86453\\.nuget\\packages\\3dtools\\1.0.0\\3dtools.1.0.0.nupkg.sha512",
"C:\\Users\\86453\\.nuget\\packages\\materialdesigncolors\\2.1.4\\materialdesigncolors.2.1.4.nupkg.sha512",
"C:\\Users\\86453\\.nuget\\packages\\materialdesignthemes\\4.9.0\\materialdesignthemes.4.9.0.nupkg.sha512",
"C:\\Users\\86453\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512"