@ -1,8 +1,8 @@
|
||||
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:ViewsApp"
|
||||
x:Class="ViewsApp.App">
|
||||
xmlns:local="clr-namespace:MusiLib"
|
||||
x:Class="MusiLib.App">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="ViewsApp.AppShell"
|
||||
x:Class="MusiLib.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:ViewsApp"
|
||||
xmlns:views="clr-namespace:ViewsApp.Views"
|
||||
xmlns:local="clr-namespace:MusiLib"
|
||||
xmlns:views="clr-namespace:MusiLib.Views"
|
||||
Shell.FlyoutBehavior="Disabled">
|
||||
<TabBar>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<maui:MauiWinUIApplication
|
||||
x:Class="ViewsApp.WinUI.App"
|
||||
x:Class="MusiLib.WinUI.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:maui="using:Microsoft.Maui"
|
||||
xmlns:local="using:ViewsApp.WinUI">
|
||||
xmlns:local="using:MusiLib.WinUI">
|
||||
|
||||
</maui:MauiWinUIApplication>
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="ViewsApp.WinUI.app"/>
|
||||
<assemblyIdentity version="1.0.0.0" name="MusiLib.WinUI.app"/>
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 228 B After Width: | Height: | Size: 228 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="ViewsApp.Views.Accueil"
|
||||
x:Class="MusiLib.Views.Accueil"
|
||||
Title="Accueil"
|
||||
BackgroundColor="White">
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace ViewsApp.Views;
|
||||
namespace MusiLib.Views;
|
||||
|
||||
public partial class Accueil : ContentPage, IAllowClick
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="ViewsApp.Views.Favoris"
|
||||
x:Class="MusiLib.Views.Favoris"
|
||||
Title="Favoris"
|
||||
BackgroundColor="White">
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace ViewsApp.Views;
|
||||
namespace MusiLib.Views;
|
||||
|
||||
public partial class Favoris : ContentPage, IAllowClick
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="ViewsApp.Views.Partition"
|
||||
xmlns:model="clr-namespace:ViewsApp.Model"
|
||||
x:Class="MusiLib.Views.Partition"
|
||||
xmlns:model="clr-namespace:MusiLib.Model"
|
||||
Title="Partition">
|
||||
|
||||
<ContentPage.BindingContext>
|