修复更改项目命名空间错误

This commit is contained in:
SharwOrange橙夜 2024-03-05 23:30:02 +08:00
parent ae5783d012
commit f1ac3b31ee
17 changed files with 20 additions and 20 deletions

View File

@ -1,8 +1,8 @@
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.App"
x:Class="toast_mcl.App"
xmlns:sty="using:FluentAvalonia.Styling"
RequestedThemeVariant="Default"
RequestedThemeVariant="Dark"
>
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->

View File

@ -3,7 +3,7 @@ using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
using Avalonia.Media;
namespace wheel_mcl
namespace toast_mcl
{
public partial class App : Application
{

View File

@ -2,10 +2,10 @@
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:wheel_mcl;assembly=toast_mcl"
xmlns:local="clr-namespace:toast_mcl;assembly=toast_mcl"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="wheel_mcl.MainWindow"
Title="toast_mcl" FontFamily="LXGW WenKai">
x:Class="toast_mcl.MainWindow"
Title="toast_mcl">
<Grid>
<Grid.ColumnDefinitions>

View File

@ -1,6 +1,6 @@
using Avalonia.Controls;
namespace wheel_mcl
namespace toast_mcl
{
public partial class MainWindow : Window
{

View File

@ -1,5 +1,5 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.About">
x:Class="toast_mcl.About">
This is About
</UserControl>

View File

@ -2,7 +2,7 @@ using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace wheel_mcl;
namespace toast_mcl;
public partial class About : UserControl
{

View File

@ -1,5 +1,5 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.Downloads">
x:Class="toast_mcl.Downloads">
This is Downloads!
</UserControl>

View File

@ -2,7 +2,7 @@ using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace wheel_mcl;
namespace toast_mcl;
public partial class Downloads : UserControl
{

View File

@ -1,5 +1,5 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.Home">
x:Class="toast_mcl.Home">
This is Home
</UserControl>

View File

@ -2,7 +2,7 @@ using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace wheel_mcl;
namespace toast_mcl;
public partial class Home : UserControl
{

View File

@ -1,5 +1,5 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.Settings">
x:Class="toast_mcl.Settings">
This is Settings
</UserControl>

View File

@ -2,7 +2,7 @@ using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace wheel_mcl;
namespace toast_mcl;
public partial class Settings : UserControl
{

View File

@ -1,5 +1,5 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wheel_mcl.Tools">
x:Class="toast_mcl.Tools">
This is Tools!
</UserControl>

View File

@ -2,7 +2,7 @@ using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace wheel_mcl;
namespace toast_mcl;
public partial class Tools : UserControl
{

View File

@ -2,7 +2,7 @@
using System;
using System.Runtime.InteropServices;
namespace wheel_mcl
namespace toast_mcl
{
internal class Program
{

View File

@ -3,7 +3,7 @@
<!-- This manifest is used on Windows only.
Don't remove it as it might cause problems with window transparency and embedded controls.
For more details visit https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests -->
<assemblyIdentity version="1.0.0.0" name="wheel_mcl.Desktop"/>
<assemblyIdentity version="1.0.0.0" name="toast_mcl.Desktop"/>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>

View File

@ -7,7 +7,7 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<RootNamespace>wheel_mcl</RootNamespace>
<RootNamespace>toast_mcl</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Fonts\LXGWWenKai.ttf" />