瀏覽代碼

removed old mainview

Veloe 1 年之前
父節點
當前提交
c504b93be4

+ 2 - 2
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp.Desktop/VeloeAvaloniaKemonoPartyApp.Desktop.csproj

@@ -10,8 +10,8 @@
 
   <PropertyGroup>
     <ApplicationManifest>app.manifest</ApplicationManifest>
-    <AssemblyVersion>1.0.0.17</AssemblyVersion>
-    <FileVersion>1.0.0.17</FileVersion>
+    <AssemblyVersion>1.0.0.18</AssemblyVersion>
+    <FileVersion>1.0.0.18</FileVersion>
   </PropertyGroup>
 
   <ItemGroup>

+ 2 - 2
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp.csproj

@@ -4,8 +4,8 @@
     <Nullable>enable</Nullable>
     <LangVersion>latest</LangVersion>
     <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
-    <AssemblyVersion>1.0.0.97</AssemblyVersion>
-    <FileVersion>1.0.0.97</FileVersion>
+    <AssemblyVersion>1.0.0.98</AssemblyVersion>
+    <FileVersion>1.0.0.98</FileVersion>
   </PropertyGroup>
 
   

+ 0 - 11
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp/Views/MainView.axaml

@@ -1,11 +0,0 @@
-<UserControl xmlns="https://github.com/avaloniaui"
-             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:m="using:VeloeAvaloniaKemonoPartyApp.Models"
-			 xmlns:vm="clr-namespace:VeloeAvaloniaKemonoPartyApp.ViewModels"
-			 mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="854"
-             x:Class="VeloeAvaloniaKemonoPartyApp.Views.MainView"
-             x:DataType="vm:MainViewModel">
-	<ContentControl Content="{Binding ContentViewModel}" />
-</UserControl>

+ 0 - 15
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp/Views/MainView.axaml.cs

@@ -1,15 +0,0 @@
-using Avalonia.Controls;
-using Avalonia.Input;
-using System;
-using VeloeAvaloniaKemonoPartyApp.ViewModels;
-
-namespace VeloeAvaloniaKemonoPartyApp.Views
-{
-    public partial class MainView: UserControl
-    {
-        public MainView()
-        {
-            InitializeComponent();
-        }
-    }
-}

+ 0 - 13
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp/Views/MainWindow.axaml

@@ -1,13 +0,0 @@
-<Window xmlns="https://github.com/avaloniaui"
-        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
-        xmlns:vm="using:VeloeAvaloniaKemonoPartyApp.ViewModels"
-		xmlns:m="clr-namespace:VeloeAvaloniaKemonoPartyApp.Models"
-        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
-        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:views="clr-namespace:VeloeAvaloniaKemonoPartyApp.Views"
-        mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="854"
-        x:Class="VeloeAvaloniaKemonoPartyApp.Views.MainWindow"
-        Icon="/Assets/avalonia-logo.ico"
-        Title="VeloeAvaloniaKemonoPartyApp">
-	<views:MainView/>
-</Window>

+ 0 - 12
VeloeAvaloniaKemonoPartyApp/VeloeAvaloniaKemonoPartyApp/Views/MainWindow.axaml.cs

@@ -1,12 +0,0 @@
-using Avalonia.Controls;
-
-namespace VeloeAvaloniaKemonoPartyApp.Views
-{
-    public partial class MainWindow : Window
-    {
-        public MainWindow()
-        {
-            InitializeComponent();
-        }
-    }
-}