Fix major issues
continuous-integration/drone/push Build is passing Details

pull/18/head
Corentin LEMAIRE 2 years ago
parent bda7f3c45b
commit fd704f8b0a

@ -2,23 +2,4 @@
Console.WriteLine("---");
// See https://aka.ms/new-console-template for more information
/*Album a = new Album("Adios Bahamas", "album1.jpg", "Népal");
Album a1 = new Album("Fenêtre sur Rue", "album3.jpg", "HugoTSR");
Album a2 = new Album("Dans la Légende", "album8.jpg", "PNL");
List<Album> lst = new List<Album> { a1, a2, a };
foreach (Album album in lst)
{
Console.WriteLine($"Nom de l'album : " + album.Nom);
Console.WriteLine($"Nom du fichier : " + album.File_Name);
Console.WriteLine($"Artiste : " + album.Artiste);
Console.WriteLine($"-------------------------");
}*/

@ -6,13 +6,4 @@ public partial class AlbumPage : ContentPage
{
InitializeComponent();
}
/* async void Button_Clicked(object sender, EventArgs e)
{
var random = new Random();
var color = String.Format("#{0:X6}", random.Next(0x1000000));
bouton.BackgroundColor = Color.FromArgb(color);
await bouton.RelRotateTo(360, 1000);
bouton.Rotation = 0;
}*/
}

@ -2,7 +2,6 @@
public partial class MainPage : ContentPage
{
// int count = 0;
public MainPage()
{
@ -10,23 +9,11 @@ public partial class MainPage : ContentPage
}
/*private void OnCounterClicked(object sender, EventArgs e)
{
count++;
if (count == 1)
CounterBtn.Text = $"Clicked {count} time";
else
CounterBtn.Text = $"Clicked {count} times";
SemanticScreenReader.Announce(CounterBtn.Text);
}*/
/*async public void Go_Home()
{
await Navigation.PushAsync(new MainPage());
async public void Go_Home()
{
await Navigation.PushAsync(new MainPage());
}*/
}
}

@ -2,5 +2,5 @@
public interface IDataManager
{
//méthodes style IEnumerable<Groupe> RecupGFroupe();
}

@ -33,8 +33,6 @@ public class Stub : IDataManager
Playlist Playlist1 = new Playlist("Playlist1", "desc1", "url1.png");
Playlist Playlist2 = new Playlist("Playlist2", "desc2", "url2.png");
Playlist Playlist3 = new Playlist("Playlist3", "desc3", "url3.png");
Playlist Playlist4 = new Playlist("Playlist4", "desc4", "url4.png");
Playlist1.AddTitle(new CustomTitle("custom1", "url1.png", "info1", "chemin1"));
Playlist1.AddTitle(new CustomTitle("custom2", "url2.png", "info2", "chemin2"));

Loading…
Cancel
Save