master
editor 6 days ago
commit a106c4bafa

@ -0,0 +1,15 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|c:\\users\\coder\\desktop\\2024code\\6\\20240627\\submit\\1\\winui3_bookms-master\\winui3_bookms-master\\winui3_bookms\\mainwindow.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|solutionrelative:winui3_bookms\\mainwindow.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
},
{
"AbsoluteMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|c:\\users\\coder\\desktop\\2024code\\6\\20240627\\submit\\1\\winui3_bookms-master\\winui3_bookms-master\\winui3_bookms\\mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
"RelativeMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|solutionrelative:winui3_bookms\\mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
},
{
"AbsoluteMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|c:\\users\\coder\\desktop\\2024code\\6\\20240627\\submit\\1\\winui3_bookms-master\\winui3_bookms-master\\winui3_bookms\\book.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{3AFD2140-05C8-4EB4-AECE-137C4A135C24}|WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj|solutionrelative:winui3_bookms\\book.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"

@ -0,0 +1,75 @@
WINUI图书管理系统
一、源码描述
WinUI图书管理系统
环境VS2022 MySQL5.7
二、功能介绍
有以下功能:
添加书籍
更新所选书籍
删除所选书籍
刷新列表
搜索
不是winformWPF那种蛮稀有的。
三、注意事项
ctrl+F5运行即可。
作者: coderbest
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/WinUIBookManagement
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Application
x:Class="WINUI3_BOOKMS.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WINUI3_BOOKMS">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
<Style x:Key="ButtonStyle" TargetType="Button">

@ -0,0 +1,15 @@
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using Microsoft.UI.Xaml.Shapes;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WINUI3_BOOKMS
{
public class Book
{
public int id { get; set; }
public string name { get; set; }
public string author { get; set; }
public string press { get; set; }
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="WINUI3_BOOKMS.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WINUI3_BOOKMS"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="图书管理系统" >
<Grid Margin="10" Background="#f0f0f0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>

@ -0,0 +1,15 @@
using Microsoft.UI;
using Microsoft.UI.Windowing;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using MySql.Data.MySqlClient;
using System;
using System.Collections.ObjectModel;
using System.Runtime.InteropServices;
using Windows.Graphics;
using WinRT.Interop;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace WINUI3_BOOKMS

@ -0,0 +1,10 @@
{
"profiles": {
"WINUI3_BOOKMS (Package)": {
"commandName": "MsixPackage"
},
"WINUI3_BOOKMS (Unpackaged)": {
"commandName": "Project"
}
}
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="WINUI3_BOOKMS.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WINUI3_BOOKMS"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>WINUI3_BOOKMS</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64;ARM64</Platforms>
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) &gt;= 8">win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) &lt; 8">win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
</PropertyGroup>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
<!--
THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
-->
<Identity Name="03d0b006-ad4b-4625-9364-d07be9d7cc34" Publisher="CN=sanders-laptop" Version="1.0.0.0" ProcessorArchitecture="x86" />
<mp:PhoneIdentity PhoneProductId="03d0b006-ad4b-4625-9364-d07be9d7cc34" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>WINUI3_BOOKMS</DisplayName>
<PublisherDisplayName>sanders-laptop</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>

@ -0,0 +1,15 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0/win-x86",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {},
".NETCoreApp,Version=v8.0/win-x86": {
"WINUI3_BOOKMS/1.0.0": {
"dependencies": {
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
"Microsoft.WindowsAppSDK": "1.5.240428000",
"MySql.Data": "8.4.0",
"runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "8.0.5",

@ -0,0 +1,14 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"includedFrameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.5"
}
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
<!--
THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
-->
<Identity Name="03d0b006-ad4b-4625-9364-d07be9d7cc34" Publisher="CN=sanders-laptop" Version="1.0.0.0" ProcessorArchitecture="x86" />
<mp:PhoneIdentity PhoneProductId="03d0b006-ad4b-4625-9364-d07be9d7cc34" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>WINUI3_BOOKMS</DisplayName>
<PublisherDisplayName>sanders-laptop</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>

@ -0,0 +1,15 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0/win-x86",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {},
".NETCoreApp,Version=v8.0/win-x86": {
"WINUI3_BOOKMS/1.0.0": {
"dependencies": {
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
"Microsoft.WindowsAppSDK": "1.5.240428000",
"MySql.Data": "8.4.0",
"runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "8.0.5",

@ -0,0 +1,14 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"includedFrameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.5"
}
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

@ -0,0 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj": {}
},
"projects": {
"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj",
"projectName": "WINUI3_BOOKMS",
"projectPath": "C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS\\WINUI3_BOOKMS.csproj",
"packagesPath": "C:\\Users\\coder\\.nuget\\packages\\",
"outputPath": "C:\\Users\\coder\\Desktop\\2024Code\\6\\20240627\\submit\\1\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS-master\\WINUI3_BOOKMS\\obj\\",
"projectStyle": "PackageReference",

@ -0,0 +1,15 @@
{
"version": 3,
"targets": {
"net8.0-windows10.0.19041": {
"BouncyCastle.Cryptography/2.2.1": {
"type": "package",
"compile": {
"lib/net6.0/BouncyCastle.Cryptography.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/BouncyCastle.Cryptography.dll": {
"related": ".xml"
}

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

@ -0,0 +1,15 @@
#pragma checksum "C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "253718902E3249B2B8019DBDB1591FEC986BE150552B4C233EA812701B6BFDCA"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WINUI3_BOOKMS
{
partial class App : global::Microsoft.UI.Xaml.Application
{
}

@ -0,0 +1,15 @@
#pragma checksum "C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "253718902E3249B2B8019DBDB1591FEC986BE150552B4C233EA812701B6BFDCA"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WINUI3_BOOKMS
{
#if !DISABLE_XAML_GENERATED_MAIN
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Application
x:Class="WINUI3_BOOKMS.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WINUI3_BOOKMS">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
<Style x:Key="ButtonStyle" TargetType="Button">

@ -0,0 +1,15 @@
#pragma checksum "C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B5CA4C893837506C8E28E517CC73CD4D259F19CAE42DC8FDDE883996573B9E12"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WINUI3_BOOKMS
{
partial class MainWindow :
global::Microsoft.UI.Xaml.Window,
global::Microsoft.UI.Xaml.Markup.IComponentConnector

@ -0,0 +1,15 @@
#pragma checksum "C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B5CA4C893837506C8E28E517CC73CD4D259F19CAE42DC8FDDE883996573B9E12"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WINUI3_BOOKMS
{
partial class MainWindow : global::Microsoft.UI.Xaml.Window
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="WINUI3_BOOKMS.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WINUI3_BOOKMS"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="图书管理系统" >
<Grid Margin="10" Background="#f0f0f0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>

@ -0,0 +1 @@
C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\WINUI3_BOOKMS.csproj;x86

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WINUI3_BOOKMS")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]

@ -0,0 +1,15 @@
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\WINUI3_BOOKMS.csproj.AssemblyReference.cache
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App.g.i.cs
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App.g.cs
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow.g.i.cs
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow.g.cs
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App.xaml
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow.xaml
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App.xbf
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow.xbf
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\WINUI3_BOOKMS.exe
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App.xbf
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow.xbf
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\WINUI3_BOOKMS.deps.json
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\WINUI3_BOOKMS.runtimeconfig.json
D:\Code\WINUI3_BOOKMS\WINUI3_BOOKMS\bin\x86\Debug\net8.0-windows10.0.19041.0\win-x86\WINUI3_BOOKMS.dll

@ -0,0 +1,15 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"BouncyCastle.Cryptography/2.2.1": {
"runtime": {
"lib/net6.0/BouncyCastle.Cryptography.dll": {
"assemblyVersion": "2.0.0.0",
"fileVersion": "2.2.1.47552"
}
}

@ -0,0 +1,15 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.5"
},
"additionalProbingPaths": [
"C:\\Users\\coder\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\coder\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><XamlCompilerSaveState><XamlFeatureControlFlags>EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT</XamlFeatureControlFlags><ReferenceAssemblyList><LocalAssembly PathName="c:\users\coder\desktop\2024code\6\20240627\submit\1\winui3_bookms-master\winui3_bookms-master\winui3_bookms\obj\x86\debug\net8.0-windows10.0.19041.0\win-x86\intermediatexaml\winui3_bookms.dll" HashGuid="54a41b86-2460-91e2-e9c7-87bd8300d056" /></ReferenceAssemblyList><XamlSourceFileDataList><XamlSourceFileData XamlFileName="App.xaml" ClassFullName="WINUI3_BOOKMS.App" GeneratedCodePathPrefix="C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\App" XamlFileTimeAtLastCompileInTicks="638526955940000000" HasBoundEventAssignments="False" /><XamlSourceFileData XamlFileName="MainWindow.xaml" ClassFullName="WINUI3_BOOKMS.MainWindow" GeneratedCodePathPrefix="C:\Users\coder\Desktop\2024Code\6\20240627\submit\1\WINUI3_BOOKMS-master\WINUI3_BOOKMS-master\WINUI3_BOOKMS\obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\MainWindow" XamlFileTimeAtLastCompileInTicks="638526955940000000" HasBoundEventAssignments="False" /></XamlSourceFileDataList></XamlCompilerSaveState>

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WINUI3_BOOKMS
{
public partial class App : global::Microsoft.UI.Xaml.Markup.IXamlMetadataProvider
{
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2404")]

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<resources targetOsVersion="10.0.0" majorVersion="1">
<index root="\" startIndexAt="obj\x86\Debug\net8.0-windows10.0.19041.0\win-x86\filtered.layout.resfiles">
<default>
<qualifier name="Language" value="en-US" />
<qualifier name="Contrast" value="standard" />
<qualifier name="Scale" value="200" />
<qualifier name="HomeRegion" value="001" />
<qualifier name="TargetSize" value="256" />
<qualifier name="LayoutDirection" value="LTR" />
<qualifier name="DXFeatureLevel" value="DX9" />
<qualifier name="Configuration" value="" />
<qualifier name="AlternateForm" value="" />
<qualifier name="Platform" value="UAP" />
</default>

@ -0,0 +1,3 @@
AlternateForm=UNPLATED
Scale=200
TargetSize=24
Loading…
Cancel
Save