修改
This commit is contained in:
parent
c6abdadd70
commit
2e31ad1141
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -16,9 +16,15 @@
|
||||
<Compile Update="Views\AnchorModel.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\AnchorPointView.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\BuoyModel.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\BuoyPlatformView.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\FirstPageAnchorControl.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
@ -31,7 +37,10 @@
|
||||
<Compile Update="Views\FirstPageView.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\SecondPageView.xaml.cs">
|
||||
<Compile Update="Views\InitialView.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\ProgressView.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\SupportModel.xaml.cs">
|
||||
@ -48,9 +57,15 @@
|
||||
<Page Update="Views\AnchorModel.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\AnchorPointView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\BuoyModel.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\BuoyPlatformView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\FirstPageAnchorControl.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
@ -63,7 +78,10 @@
|
||||
<Page Update="Views\FirstPageView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\SecondPageView.xaml">
|
||||
<Page Update="Views\InitialView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\ProgressView.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="Views\SupportModel.xaml">
|
||||
|
||||
16
App.xaml
16
App.xaml
@ -18,23 +18,23 @@
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<!-- =============== 按钮样式 =============== -->
|
||||
<Style TargetType="Button" x:Key="ControlButtonStyle">
|
||||
<Setter Property="Width" Value="40"/>
|
||||
<Setter Property="Background" Value="#11FFFFFF"/>
|
||||
<Setter Property="Foreground" Value="White"/>
|
||||
<Setter Property="FontFamily" Value="Assets/Fonts/#iconfont"/>
|
||||
<!-- =============== 按钮样式 =============== -->
|
||||
<Style x:Key="ControlButtonStyle" TargetType="Button">
|
||||
<Setter Property="Width" Value="40" />
|
||||
<Setter Property="Background" Value="#11FFFFFF" />
|
||||
<Setter Property="Foreground" Value="White" />
|
||||
<Setter Property="FontFamily" Value="Assets/Fonts/#iconfont" />
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="Button">
|
||||
<Grid Background="{TemplateBinding Background}">
|
||||
<Border Name="root">
|
||||
<ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
||||
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
|
||||
</Border>
|
||||
</Grid>
|
||||
<ControlTemplate.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter TargetName="root" Property="Background" Value="#33FFFFFF"/>
|
||||
<Setter TargetName="root" Property="Background" Value="#33FFFFFF" />
|
||||
</Trigger>
|
||||
</ControlTemplate.Triggers>
|
||||
</ControlTemplate>
|
||||
|
||||
@ -1,13 +1,24 @@
|
||||
<Window x:Class="_20230724_MBJC_upperpc.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc"
|
||||
xmlns:converters="clr-namespace:_20230724_MBJC_upperpc.Common"
|
||||
mc:Ignorable="d"
|
||||
Title="锚点监测项目" Height="900" Width="1600" MinHeight="900" MinWidth="1600" Background="Transparent" FontFamily="Microsoft YaHei"
|
||||
FontSize="12" FontWeight="ExtraLight" WindowStartupLocation="CenterScreen" Name="Window">
|
||||
<Window
|
||||
x:Class="_20230724_MBJC_upperpc.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:converters="clr-namespace:_20230724_MBJC_upperpc.Common"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:views="clr-namespace:_20230724_MBJC_upperpc.Views"
|
||||
Name="Window"
|
||||
Title="锚点监测项目"
|
||||
Width="1600"
|
||||
Height="900"
|
||||
MinWidth="1600"
|
||||
MinHeight="900"
|
||||
Background="Transparent"
|
||||
FontFamily="Microsoft YaHei"
|
||||
FontSize="12"
|
||||
FontWeight="ExtraLight"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
mc:Ignorable="d">
|
||||
<WindowChrome.WindowChrome>
|
||||
<WindowChrome GlassFrameThickness="-1" />
|
||||
</WindowChrome.WindowChrome>
|
||||
@ -293,7 +304,7 @@
|
||||
<!-- 平台信息 -->
|
||||
<RadioButton
|
||||
Command="{Binding NavChangedCommand}"
|
||||
CommandParameter="Point1"
|
||||
CommandParameter="BuoyPlatformView"
|
||||
Content="平台信息"
|
||||
Style="{DynamicResource NavButtonStyle}" />
|
||||
<!-- 锚点信息 -->
|
||||
@ -350,6 +361,7 @@
|
||||
|
||||
<!-- 内容部分 -->
|
||||
<ContentControl Grid.Row="3" Content="{Binding PageContent}" />
|
||||
<!--<views:ProgressView Grid.Row="3" Visibility="Visible" />-->
|
||||
|
||||
<!-- 底部状态栏部分 -->
|
||||
<Border
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
using _20230724_MBJC_upperpc.Common;
|
||||
using _20230724_MBJC_upperpc.Models;
|
||||
using _20230724_MBJC_upperpc.Views;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -31,6 +32,7 @@ namespace _20230724_MBJC_upperpc.ViewModels
|
||||
}
|
||||
|
||||
|
||||
|
||||
private BeaconModel beacon = new BeaconModel
|
||||
{
|
||||
ID = 6,
|
||||
@ -64,22 +66,35 @@ namespace _20230724_MBJC_upperpc.ViewModels
|
||||
this.NavChangedCommand = new CommandBase();
|
||||
this.NavChangedCommand.DoExcute = new Action<object>(DoNavChanged);
|
||||
this.NavChangedCommand.DoCanExcute = new Func<object, bool>((o) => true);
|
||||
|
||||
DoNavChanged("FirstPageView");
|
||||
}
|
||||
|
||||
public void DoNavChanged(object obj)
|
||||
{
|
||||
|
||||
if (Title_Name == obj.ToString())
|
||||
return;
|
||||
Title_Name = obj.ToString();
|
||||
|
||||
if (Title_Name != "FirstPageView" && Title_Name != "BuoyPlatformView")
|
||||
{
|
||||
Title_Name = "AnchorPointView";
|
||||
}
|
||||
|
||||
//切换页面之前清理一下内存
|
||||
tools.ClearMemory(this);
|
||||
|
||||
Type type = Type.GetType("_20230724_MBJC_upperpc.Views." + Title_Name);
|
||||
|
||||
//首先提示加载界面
|
||||
Type type = Type.GetType("_20230724_MBJC_upperpc.Views.ProgressView");
|
||||
ConstructorInfo cti = type.GetConstructor(System.Type.EmptyTypes);
|
||||
FrameworkElement page = (FrameworkElement)cti.Invoke(null);
|
||||
this.PageContent = page;
|
||||
|
||||
type = Type.GetType("_20230724_MBJC_upperpc.Views." + Title_Name);
|
||||
cti = type.GetConstructor(System.Type.EmptyTypes);
|
||||
page = (FrameworkElement)cti.Invoke(null);
|
||||
this.PageContent = page;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -15,9 +15,9 @@
|
||||
<Viewport3D.Camera>
|
||||
<PerspectiveCamera
|
||||
FarPlaneDistance="50"
|
||||
LookDirection="-1,-1,-1"
|
||||
LookDirection="-0.5,-0.5,-1"
|
||||
NearPlaneDistance="1"
|
||||
Position="7,8,7" />
|
||||
Position="6,6,12" />
|
||||
</Viewport3D.Camera>
|
||||
<Viewport3D.Children>
|
||||
<ModelVisual3D>
|
||||
|
||||
62
Views/AnchorPointView.xaml
Normal file
62
Views/AnchorPointView.xaml
Normal file
@ -0,0 +1,62 @@
|
||||
<UserControl
|
||||
x:Class="_20230724_MBJC_upperpc.Views.AnchorPointView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:converters="clr-namespace:_20230724_MBJC_upperpc.Common"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc.Views"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
d:DesignHeight="450"
|
||||
d:DesignWidth="800"
|
||||
mc:Ignorable="d">
|
||||
<UserControl.Resources>
|
||||
<ResourceDictionary>
|
||||
<converters:AspectRatioConverter x:Key="AspectRatioConverter" />
|
||||
</ResourceDictionary>
|
||||
</UserControl.Resources>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="9*" />
|
||||
<ColumnDefinition Width="7*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid Name="LeftGrid" Grid.Column="0">
|
||||
<local:AnchorModel
|
||||
x:Name="AnchorModel"
|
||||
TBDEnable="True"
|
||||
Visibility="Visible" />
|
||||
<local:InitialView
|
||||
Width="{Binding ElementName=LeftGrid, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"
|
||||
Height="{Binding ElementName=LeftGrid, Path=ActualHeight, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"
|
||||
Margin="10,0,0,10"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Bottom" />
|
||||
</Grid>
|
||||
<Grid Grid.Column="1">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<DatePicker
|
||||
Width="100"
|
||||
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}" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Views/AnchorPointView.xaml.cs
Normal file
28
Views/AnchorPointView.xaml.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace _20230724_MBJC_upperpc.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// AnchorPointView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class AnchorPointView : UserControl
|
||||
{
|
||||
public AnchorPointView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -15,9 +15,9 @@
|
||||
<Viewport3D.Camera>
|
||||
<PerspectiveCamera
|
||||
FarPlaneDistance="500"
|
||||
LookDirection="-1,-1,-1"
|
||||
LookDirection="-0.5,-0.5,-1"
|
||||
NearPlaneDistance="1"
|
||||
Position="70,70,70"
|
||||
Position="60,60,120"
|
||||
UpDirection="0,1,0" />
|
||||
</Viewport3D.Camera>
|
||||
<Viewport3D.Children>
|
||||
|
||||
37
Views/BuoyPlatformView.xaml
Normal file
37
Views/BuoyPlatformView.xaml
Normal file
@ -0,0 +1,37 @@
|
||||
<UserControl
|
||||
x:Class="_20230724_MBJC_upperpc.Views.BuoyPlatformView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:converters="clr-namespace:_20230724_MBJC_upperpc.Common"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc.Views"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
d:DesignHeight="450"
|
||||
d:DesignWidth="800"
|
||||
mc:Ignorable="d">
|
||||
<UserControl.Resources>
|
||||
<ResourceDictionary>
|
||||
<converters:AspectRatioConverter x:Key="AspectRatioConverter" />
|
||||
</ResourceDictionary>
|
||||
</UserControl.Resources>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="9*" />
|
||||
<ColumnDefinition Width="7*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid Name="LeftGrid" Grid.Column="0">
|
||||
<local:BuoyModel
|
||||
x:Name="BuoyModel"
|
||||
Rotate_X="-90"
|
||||
Rotate_Y="90"
|
||||
Rotate_Z="0"
|
||||
TBDEnable="True" />
|
||||
<local:InitialView
|
||||
Width="{Binding ElementName=LeftGrid, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"
|
||||
Height="{Binding ElementName=LeftGrid, Path=ActualHeight, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"
|
||||
Margin="10,0,0,10"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Bottom" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Views/BuoyPlatformView.xaml.cs
Normal file
28
Views/BuoyPlatformView.xaml.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace _20230724_MBJC_upperpc.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// BuoyPlatformView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class BuoyPlatformView : UserControl
|
||||
{
|
||||
public BuoyPlatformView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -124,6 +124,9 @@ namespace _20230724_MBJC_upperpc.Views
|
||||
this.AnchorModel.Rotate_X = Beacon.Beacon_Pitch_Angle;
|
||||
this.AnchorModel.Rotate_Y = Beacon.Beacon_Heading_Angle;
|
||||
this.AnchorModel.Rotate_Z = Beacon.Beacon_Roll_Angle;
|
||||
this.SupportModel.Rotate_X = Beacon.Beacon_Pitch_Angle;
|
||||
this.SupportModel.Rotate_Y = Beacon.Beacon_Heading_Angle;
|
||||
this.SupportModel.Rotate_Z = Beacon.Beacon_Roll_Angle;
|
||||
|
||||
this.DateTime.Text = Beacon.Datetime.ToString("yyyy-MM-dd HH:mm:ss");
|
||||
this.TextID.Text = Beacon.ID + "";
|
||||
@ -141,6 +144,7 @@ namespace _20230724_MBJC_upperpc.Views
|
||||
//this.TextAlarm.Text = AlarmInfo;
|
||||
//是否可以使用鼠标跟随
|
||||
this.AnchorModel.TBDEnable = TBDEnable;
|
||||
this.SupportModel.TBDEnable = TBDEnable;
|
||||
//设置字体颜色和字体大小
|
||||
this.TextID.Foreground = this.Text_Color;
|
||||
if (this.Font_Size != 0)
|
||||
@ -177,10 +181,6 @@ namespace _20230724_MBJC_upperpc.Views
|
||||
grid.ColumnDefinitions[0].Width = new GridLength(2, GridUnitType.Star);
|
||||
grid.ColumnDefinitions[1].Width = new GridLength(3, GridUnitType.Star);
|
||||
}
|
||||
|
||||
this.AnchorModel.TBDEnable = TBDEnable;
|
||||
this.SupportModel.TBDEnable = TBDEnable;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -72,6 +72,7 @@
|
||||
AlarmInfo="告警:文件传输失败"
|
||||
Beacon="{Binding Beacon}"
|
||||
Font_Size="10"
|
||||
Model_Position="0"
|
||||
Model_Visibility="1"
|
||||
TBDEnable="False"
|
||||
Text_Color="Black">
|
||||
@ -130,6 +131,7 @@
|
||||
AlarmInfo="告警:文件传输失败"
|
||||
Beacon="{Binding Beacon}"
|
||||
Font_Size="10"
|
||||
Model_Position="0"
|
||||
Model_Visibility="1"
|
||||
TBDEnable="False"
|
||||
Text_Color="Black">
|
||||
@ -154,6 +156,7 @@
|
||||
AlarmInfo="告警:文件传输失败"
|
||||
Beacon="{Binding Beacon}"
|
||||
Font_Size="10"
|
||||
Model_Position="0"
|
||||
Model_Visibility="1"
|
||||
TBDEnable="False"
|
||||
Text_Color="Black">
|
||||
@ -177,6 +180,7 @@
|
||||
AlarmInfo="告警:文件传输失败"
|
||||
Beacon="{Binding Beacon}"
|
||||
Font_Size="10"
|
||||
Model_Position="1"
|
||||
Model_Visibility="2"
|
||||
TBDEnable="False"
|
||||
Text_Color="Black">
|
||||
@ -201,6 +205,7 @@
|
||||
AlarmInfo="告警:文件传输失败"
|
||||
Beacon="{Binding Beacon}"
|
||||
Font_Size="10"
|
||||
Model_Position="0"
|
||||
Model_Visibility="2"
|
||||
TBDEnable="False"
|
||||
Text_Color="Black">
|
||||
|
||||
138
Views/InitialView.xaml
Normal file
138
Views/InitialView.xaml
Normal file
@ -0,0 +1,138 @@
|
||||
<UserControl
|
||||
x:Class="_20230724_MBJC_upperpc.Views.InitialView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc.Views"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
d:DesignHeight="800"
|
||||
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">
|
||||
<Viewport3D.Camera>
|
||||
<!--<PerspectiveCamera Position="0,2.5,10" LookDirection="0,-0.1,-1" NearPlaneDistance="1" FarPlaneDistance="10" />-->
|
||||
<PerspectiveCamera
|
||||
FarPlaneDistance="50"
|
||||
LookDirection="-0.5,-0.5,-1"
|
||||
NearPlaneDistance="1"
|
||||
Position="4,4,8" />
|
||||
</Viewport3D.Camera>
|
||||
<Viewport3D.Children>
|
||||
<ModelVisual3D>
|
||||
|
||||
<ModelVisual3D.Children>
|
||||
<ModelVisual3D>
|
||||
<ModelVisual3D.Content>
|
||||
<GeometryModel3D>
|
||||
<GeometryModel3D.Geometry>
|
||||
<MeshGeometry3D
|
||||
Normals="0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
|
||||
Positions="0,-0.2,0 0,0.2,0 4,0.2,0 4,0.4,0 5,0,0 4,-0.4,0 4,-0.2,0"
|
||||
TriangleIndices="0 2 1 0 6 2 2 4 3 6 4 2 5 4 6 1 2 0 2 6 0 3 4 2 2 4 6 6 4 5" />
|
||||
</GeometryModel3D.Geometry>
|
||||
<GeometryModel3D.Material>
|
||||
<DiffuseMaterial>
|
||||
<DiffuseMaterial.Brush>
|
||||
<SolidColorBrush Opacity="1" Color="Red" />
|
||||
</DiffuseMaterial.Brush>
|
||||
</DiffuseMaterial>
|
||||
</GeometryModel3D.Material>
|
||||
</GeometryModel3D>
|
||||
</ModelVisual3D.Content>
|
||||
</ModelVisual3D>
|
||||
<ModelVisual3D>
|
||||
<ModelVisual3D.Content>
|
||||
<GeometryModel3D>
|
||||
<GeometryModel3D.Geometry>
|
||||
<MeshGeometry3D
|
||||
Normals="0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
|
||||
Positions="0,-0.2,0 0,0.2,0 0,0.2,4 0,0.4,4 0,0,5 0,-0.4,4 0,-0.2,4"
|
||||
TriangleIndices="6 0 1 6 1 2 4 2 3 4 6 2 4 5 6 1 0 6 2 1 6 3 2 4 2 6 4 6 5 4" />
|
||||
</GeometryModel3D.Geometry>
|
||||
<GeometryModel3D.Material>
|
||||
<DiffuseMaterial>
|
||||
<DiffuseMaterial.Brush>
|
||||
<SolidColorBrush Opacity="1" Color="Blue" />
|
||||
</DiffuseMaterial.Brush>
|
||||
</DiffuseMaterial>
|
||||
</GeometryModel3D.Material>
|
||||
</GeometryModel3D>
|
||||
</ModelVisual3D.Content>
|
||||
</ModelVisual3D>
|
||||
<ModelVisual3D>
|
||||
<ModelVisual3D.Content>
|
||||
<GeometryModel3D>
|
||||
<GeometryModel3D.Geometry>
|
||||
<MeshGeometry3D
|
||||
Normals="0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
|
||||
Positions="0,0,0.2 0,0,-0.2 0,5,-0.2 0,5,-0.4 0,6,0 0,5,0.4 0,5,0.2"
|
||||
TriangleIndices="0 1 2 6 0 2 4 2 3 4 6 2 4 5 6 2 1 0 2 0 6 3 2 4 2 6 4 6 5 4 0 1 2 6 0 2" />
|
||||
</GeometryModel3D.Geometry>
|
||||
<GeometryModel3D.Material>
|
||||
<DiffuseMaterial>
|
||||
<DiffuseMaterial.Brush>
|
||||
<SolidColorBrush Opacity="1" Color="Yellow" />
|
||||
</DiffuseMaterial.Brush>
|
||||
</DiffuseMaterial>
|
||||
</GeometryModel3D.Material>
|
||||
</GeometryModel3D>
|
||||
</ModelVisual3D.Content>
|
||||
</ModelVisual3D>
|
||||
</ModelVisual3D.Children>
|
||||
<ModelVisual3D.Transform>
|
||||
<Transform3DGroup>
|
||||
<RotateTransform3D
|
||||
CenterX="0"
|
||||
CenterY="0"
|
||||
CenterZ="0">
|
||||
<RotateTransform3D.Rotation>
|
||||
<AxisAngleRotation3D x:Name="rotateX" Axis="1,0,0" />
|
||||
</RotateTransform3D.Rotation>
|
||||
</RotateTransform3D>
|
||||
<RotateTransform3D
|
||||
CenterX="0"
|
||||
CenterY="0"
|
||||
CenterZ="0">
|
||||
<RotateTransform3D.Rotation>
|
||||
<AxisAngleRotation3D x:Name="rotateY" Axis="0,1,0" />
|
||||
</RotateTransform3D.Rotation>
|
||||
</RotateTransform3D>
|
||||
<RotateTransform3D
|
||||
CenterX="0"
|
||||
CenterY="0"
|
||||
CenterZ="0">
|
||||
<RotateTransform3D.Rotation>
|
||||
<AxisAngleRotation3D x:Name="rotateZ" Axis="0,0,1" />
|
||||
</RotateTransform3D.Rotation>
|
||||
</RotateTransform3D>
|
||||
<ScaleTransform3D
|
||||
CenterX="0"
|
||||
CenterY="0"
|
||||
CenterZ="0"
|
||||
ScaleX="0.8"
|
||||
ScaleY="0.6"
|
||||
ScaleZ="0.8" />
|
||||
</Transform3DGroup>
|
||||
</ModelVisual3D.Transform>
|
||||
</ModelVisual3D>
|
||||
<ModelVisual3D>
|
||||
<ModelVisual3D.Children>
|
||||
<ModelVisual3D>
|
||||
<ModelVisual3D.Content>
|
||||
<Model3DGroup>
|
||||
<Model3DGroup.Children>
|
||||
<AmbientLight Color="#262626" />
|
||||
<DirectionalLight Direction="3.150000,-8.090000,-4.960000" Color="#6F6F6F" />
|
||||
<DirectionalLight Direction="8.610000,4.820000,-1.640000" Color="#454545" />
|
||||
<DirectionalLight Direction="-9.490000,3.090000,0.600000" Color="#332835" />
|
||||
</Model3DGroup.Children>
|
||||
</Model3DGroup>
|
||||
</ModelVisual3D.Content>
|
||||
</ModelVisual3D>
|
||||
</ModelVisual3D.Children>
|
||||
</ModelVisual3D>
|
||||
</Viewport3D.Children>
|
||||
</Viewport3D>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@ -16,11 +16,11 @@ using System.Windows.Shapes;
|
||||
namespace _20230724_MBJC_upperpc.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// SecondPageView.xaml 的交互逻辑
|
||||
/// InitialView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class SecondPageView : UserControl
|
||||
public partial class InitialView : UserControl
|
||||
{
|
||||
public SecondPageView()
|
||||
public InitialView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
25
Views/ProgressView.xaml
Normal file
25
Views/ProgressView.xaml
Normal file
@ -0,0 +1,25 @@
|
||||
<UserControl
|
||||
x:Class="_20230724_MBJC_upperpc.Views.ProgressView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:_20230724_MBJC_upperpc.Views"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
d:DesignHeight="450"
|
||||
d:DesignWidth="800"
|
||||
mc:Ignorable="d">
|
||||
<Grid>
|
||||
<StackPanel
|
||||
Width="100"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<ProgressBar
|
||||
Width="40"
|
||||
Height="40"
|
||||
Margin="20"
|
||||
IsIndeterminate="True"
|
||||
Style="{StaticResource MaterialDesignCircularProgressBar}" />
|
||||
<TextBlock Foreground="White" Text="正在加载,请稍等......" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Views/ProgressView.xaml.cs
Normal file
28
Views/ProgressView.xaml.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace _20230724_MBJC_upperpc.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// ProgressView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class ProgressView : UserControl
|
||||
{
|
||||
public ProgressView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -0,0 +1,85 @@
|
||||
{
|
||||
"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, )"
|
||||
},
|
||||
"Prism.Forms": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,85 @@
|
||||
{
|
||||
"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, )"
|
||||
},
|
||||
"Prism.Forms": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,85 @@
|
||||
{
|
||||
"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, )"
|
||||
},
|
||||
"Prism.Forms": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,85 @@
|
||||
{
|
||||
"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, )"
|
||||
},
|
||||
"Prism.Forms": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,85 @@
|
||||
{
|
||||
"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, )"
|
||||
},
|
||||
"Prism.Forms": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)xamarin.forms\5.0.0.2012\buildTransitive\Xamarin.Forms.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -1 +1 @@
|
||||
f12b8d95ec42178546484e9f4ed15c80e1dac1b3
|
||||
2fa8e6fff0467329a78a83ea923f6408c7b0e265
|
||||
|
||||
@ -2,11 +2,14 @@ D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SecondPageView.g.cs
|
||||
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\ProgressView.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\App.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.cs
|
||||
@ -21,17 +24,18 @@ D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\3DTools.dll
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignColors.dll
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignThemes.Wpf.dll
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\Microsoft.Xaml.Behaviors.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\App.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SecondPageView.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\ProgressView.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.baml
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.g.resources
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig
|
||||
@ -44,3 +48,5 @@ D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\refint\2023072
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.pdb
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.genruntimeconfig.cache
|
||||
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\InitialView.g.cs
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\InitialView.baml
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
|
||||
10566417316
|
||||
13758307417
|
||||
|
||||
282137538959
|
||||
31-1098131422
|
||||
198-1745317550
|
||||
FirstWindow.xaml;MainWindow.xaml;Views\AnchorModel.xaml;Views\BuoyModel.xaml;Views\FirstPageAnchorControl.xaml;Views\FirstPageBuoyControl.xaml;Views\FirstPageSupportControl.xaml;Views\FirstPageView.xaml;Views\SecondPageView.xaml;Views\SupportModel.xaml;
|
||||
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;
|
||||
|
||||
False
|
||||
|
||||
|
||||
@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
|
||||
D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
|
||||
10566417316
|
||||
13758307417
|
||||
|
||||
30370696195
|
||||
331429993110
|
||||
198-1745317550
|
||||
FirstWindow.xaml;MainWindow.xaml;Views\AnchorModel.xaml;Views\BuoyModel.xaml;Views\FirstPageAnchorControl.xaml;Views\FirstPageBuoyControl.xaml;Views\FirstPageSupportControl.xaml;Views\FirstPageView.xaml;Views\SecondPageView.xaml;Views\SupportModel.xaml;
|
||||
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;
|
||||
|
||||
True
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageAnchorControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageSupportControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\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;;
|
||||
|
||||
|
||||
@ -3,11 +3,14 @@ FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\FirstWindow.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorModel.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\AnchorPointView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyModel.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\BuoyPlatformView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageAnchorControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageSupportControl.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\SecondPageView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\InitialView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\ProgressView.xaml;;
|
||||
FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\SupportModel.xaml;;
|
||||
|
||||
|
||||
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -0,0 +1,11 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = _20230724_MBJC_upperpc
|
||||
build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
|
||||
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user