xaml 改到Views 資料夾 20250324

This commit is contained in:
allen.yan 2025-03-24 14:13:49 +08:00
parent 7c86f3b6e3
commit b0a9673ffc
4 changed files with 7 additions and 7 deletions

View File

@ -261,31 +261,31 @@
</Reference> </Reference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ApplicationDefinition Include="App.xaml"> <ApplicationDefinition Include="Views\App.xaml">
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</ApplicationDefinition> </ApplicationDefinition>
<Compile Include="Converters\ImagePathConverter.cs" /> <Compile Include="Converters\ImagePathConverter.cs" />
<Compile Include="Models\SongData.cs" /> <Compile Include="Models\SongData.cs" />
<Page Include="Index.xaml"> <Page Include="Views\Index.xaml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
</Page> </Page>
<Page Include="MainWindow.xaml"> <Page Include="Views\MainWindow.xaml">
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</Page> </Page>
<Compile Include="Controller\App.cs"> <Compile Include="Controller\App.cs">
<DependentUpon>App.xaml</DependentUpon> <DependentUpon>Views\App.xaml</DependentUpon>
<SubType>Code</SubType> <SubType>Code</SubType>
</Compile> </Compile>
<Compile Include="Converters\BitmapToImageSourceConverter.cs" /> <Compile Include="Converters\BitmapToImageSourceConverter.cs" />
<Compile Include="Controller\Index.cs"> <Compile Include="Controller\Index.cs">
<DependentUpon>Index.xaml</DependentUpon> <DependentUpon>Views\Index.xaml</DependentUpon>
</Compile> </Compile>
<Compile Include="Controller\MainViewModel.cs" /> <Compile Include="Controller\MainViewModel.cs" />
<Compile Include="Controller\MainWindow.cs"> <Compile Include="Controller\MainWindow.cs">
<DependentUpon>MainWindow.xaml</DependentUpon> <DependentUpon>Views\MainWindow.xaml</DependentUpon>
<SubType>Code</SubType> <SubType>Code</SubType>
</Compile> </Compile>
</ItemGroup> </ItemGroup>

View File

@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Karaoke_Kingpin.Controller" xmlns:local="clr-namespace:Karaoke_Kingpin.Controller"
xmlns:converters="clr-namespace:Karaoke_Kingpin.Converters" xmlns:converters="clr-namespace:Karaoke_Kingpin.Converters"
StartupUri="MainWindow.xaml"> StartupUri="Views\MainWindow.xaml">
<Application.Resources> <Application.Resources>
</Application.Resources> </Application.Resources>