This commit is contained in:
Chen 2024-01-09 17:33:18 +08:00
parent acb11f55ee
commit 4a32195740
78 changed files with 512 additions and 25 deletions

Binary file not shown.

View File

@ -31,6 +31,7 @@
Margin="10,0,0,10"
HorizontalAlignment="Left"
VerticalAlignment="Bottom" />
</Grid>
<Grid Grid.Column="1">
<Grid.RowDefinitions>
@ -43,20 +44,97 @@
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<DatePicker
Width="100"
<TextBlock
HorizontalAlignment="Left"
VerticalAlignment="Center"
materialDesign:HintAssist.Hint="开始时间"
materialDesign:TextFieldAssist.HasClearButton="True"
Style="{StaticResource MaterialDesignFloatingHintDatePicker}" />
<DatePicker
Width="100"
HorizontalAlignment="Right"
VerticalAlignment="Center"
materialDesign:HintAssist.Hint="结束时间"
materialDesign:TextFieldAssist.HasClearButton="True"
Style="{StaticResource MaterialDesignFloatingHintDatePicker}" />
FontSize="30"
Foreground="White"
Text="锚点ID:" />
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
<DatePicker
Width="130"
materialDesign:HintAssist.Hint="开始时间"
FontSize="20"
Foreground="White"
SelectedDateChanged="DatePicker_SelectedDateChanged">
<DatePicker.Resources>
<Style
x:Key="CustomCalendarDayButton"
BasedOn="{StaticResource MaterialDesignCalendarDayButton}"
TargetType="CalendarDayButton">
<Setter Property="materialDesign:CalendarAssist.SelectionColor" Value="#B2F39B" />
<Setter Property="materialDesign:CalendarAssist.SelectionForegroundColor" Value="Black" />
</Style>
<Style
x:Key="CustomCalendarButton"
BasedOn="{StaticResource MaterialDesignCalendarButton}"
TargetType="CalendarButton">
<Setter Property="materialDesign:CalendarAssist.SelectionColor" Value="#B2F39B" />
<Setter Property="materialDesign:CalendarAssist.SelectionForegroundColor" Value="Black" />
</Style>
<Style
x:Key="CustomCalendar"
BasedOn="{StaticResource MaterialDesignDatePickerCalendarPortrait}"
TargetType="{x:Type Calendar}">
<Setter Property="Background" Value="#343C3F" />
<Setter Property="CalendarButtonStyle" Value="{StaticResource CustomCalendarButton}" />
<Setter Property="CalendarDayButtonStyle" Value="{StaticResource CustomCalendarDayButton}" />
<Setter Property="Foreground" Value="White" />
<Setter Property="materialDesign:CalendarAssist.HeaderBackground" Value="#A2E9FF" />
<Setter Property="materialDesign:CalendarAssist.HeaderForeground" Value="Black" />
</Style>
<Style BasedOn="{StaticResource MaterialDesignFloatingHintDatePicker}" TargetType="DatePicker">
<Setter Property="CalendarStyle" Value="{StaticResource CustomCalendar}" />
</Style>
</DatePicker.Resources>
</DatePicker>
<DatePicker
Width="130"
Margin="30,0,30,0"
materialDesign:HintAssist.Hint="结束时间"
FontSize="20"
Foreground="White">
<DatePicker.Resources>
<Style
x:Key="CustomCalendarDayButton"
BasedOn="{StaticResource MaterialDesignCalendarDayButton}"
TargetType="CalendarDayButton">
<Setter Property="materialDesign:CalendarAssist.SelectionColor" Value="#B2F39B" />
<Setter Property="materialDesign:CalendarAssist.SelectionForegroundColor" Value="Black" />
</Style>
<Style
x:Key="CustomCalendarButton"
BasedOn="{StaticResource MaterialDesignCalendarButton}"
TargetType="CalendarButton">
<Setter Property="materialDesign:CalendarAssist.SelectionColor" Value="#B2F39B" />
<Setter Property="materialDesign:CalendarAssist.SelectionForegroundColor" Value="Black" />
</Style>
<Style
x:Key="CustomCalendar"
BasedOn="{StaticResource MaterialDesignDatePickerCalendarPortrait}"
TargetType="{x:Type Calendar}">
<Setter Property="Background" Value="#343C3F" />
<Setter Property="CalendarButtonStyle" Value="{StaticResource CustomCalendarButton}" />
<Setter Property="CalendarDayButtonStyle" Value="{StaticResource CustomCalendarDayButton}" />
<Setter Property="Foreground" Value="White" />
<Setter Property="materialDesign:CalendarAssist.HeaderBackground" Value="#A2E9FF" />
<Setter Property="materialDesign:CalendarAssist.HeaderForeground" Value="Black" />
</Style>
<Style BasedOn="{StaticResource MaterialDesignFloatingHintDatePicker}" TargetType="DatePicker">
<Setter Property="CalendarStyle" Value="{StaticResource CustomCalendar}" />
</Style>
</DatePicker.Resources>
</DatePicker>
</StackPanel>
<Slider
Grid.Row="1"
Margin="0,0,20,0"
Maximum="100"
Minimum="0"
Style="{StaticResource MaterialDesignDiscreteSlider}"
TickFrequency="{Binding DiscreteHorizontal.TickFrequency}"
TickPlacement="BottomRight"
Value="0" />
</Grid>
</Grid>
</UserControl>

View File

@ -24,5 +24,10 @@ namespace _20230724_MBJC_upperpc.Views
{
InitializeComponent();
}
private void DatePicker_SelectedDateChanged(object sender, SelectionChangedEventArgs e)
{
}
}
}

View File

@ -9,7 +9,27 @@
d:DesignWidth="800"
mc:Ignorable="d">
<Grid>
<Viewport3D xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<TextBlock
HorizontalAlignment="Center"
FontSize="15"
Foreground="White"
Text="偏航角90.24°" />
<TextBlock
HorizontalAlignment="Right"
VerticalAlignment="Center"
FontSize="15"
Foreground="White"
Text="俯仰角90.24°" />
<TextBlock
Margin="15,0,0,5"
VerticalAlignment="Bottom"
FontSize="15"
Foreground="White"
Text="翻滚角90.24°" />
<Viewport3D
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Margin="0,20,0,0">
<Viewport3D.Camera>
<!--<PerspectiveCamera Position="0,2.5,10" LookDirection="0,-0.1,-1" NearPlaneDistance="1" FarPlaneDistance="10" />-->
<PerspectiveCamera

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

@ -2,6 +2,4 @@
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorModel.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorPointView.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyModel.xaml;;
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\InitialView.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

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "193EE1D0A6849E569E6AEC0FA3B32152DAAAE287"
#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2D02E1404800CF67DC937CE823D4D2F530D037FD"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -104,6 +104,14 @@ namespace _20230724_MBJC_upperpc.Views {
case 2:
this.AnchorModel = ((_20230724_MBJC_upperpc.Views.AnchorModel)(target));
return;
case 3:
#line 59 "..\..\..\..\Views\AnchorPointView.xaml"
((System.Windows.Controls.DatePicker)(target)).SelectedDateChanged += new System.EventHandler<System.Windows.Controls.SelectionChangedEventArgs>(this.DatePicker_SelectedDateChanged);
#line default
#line hidden
return;
}
this._contentLoaded = true;
}

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "193EE1D0A6849E569E6AEC0FA3B32152DAAAE287"
#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2D02E1404800CF67DC937CE823D4D2F530D037FD"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -104,6 +104,14 @@ namespace _20230724_MBJC_upperpc.Views {
case 2:
this.AnchorModel = ((_20230724_MBJC_upperpc.Views.AnchorModel)(target));
return;
case 3:
#line 59 "..\..\..\..\Views\AnchorPointView.xaml"
((System.Windows.Controls.DatePicker)(target)).SelectedDateChanged += new System.EventHandler<System.Windows.Controls.SelectionChangedEventArgs>(this.DatePicker_SelectedDateChanged);
#line default
#line hidden
return;
}
this._contentLoaded = true;
}

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\InitialView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E90A2EFFED36224840EA0E28F77C60006E8EF2A0"
#pragma checksum "..\..\..\..\Views\InitialView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0550B16B852DBBBCD263BF30925E0E3F4E2AFC2F"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -42,7 +42,7 @@ namespace _20230724_MBJC_upperpc.Views {
public partial class InitialView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 90 "..\..\..\..\Views\InitialView.xaml"
#line 110 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateX;
@ -50,7 +50,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
#line 98 "..\..\..\..\Views\InitialView.xaml"
#line 118 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateY;
@ -58,7 +58,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
#line 106 "..\..\..\..\Views\InitialView.xaml"
#line 126 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateZ;

View File

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\Views\InitialView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E90A2EFFED36224840EA0E28F77C60006E8EF2A0"
#pragma checksum "..\..\..\..\Views\InitialView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0550B16B852DBBBCD263BF30925E0E3F4E2AFC2F"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -42,7 +42,7 @@ namespace _20230724_MBJC_upperpc.Views {
public partial class InitialView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 90 "..\..\..\..\Views\InitialView.xaml"
#line 110 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateX;
@ -50,7 +50,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
#line 98 "..\..\..\..\Views\InitialView.xaml"
#line 118 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateY;
@ -58,7 +58,7 @@ namespace _20230724_MBJC_upperpc.Views {
#line hidden
#line 106 "..\..\..\..\Views\InitialView.xaml"
#line 126 "..\..\..\..\Views\InitialView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Media.Media3D.AxisAngleRotation3D rotateZ;