diff --git a/.vs/Reproductor de Musica/v16/.suo b/.vs/Reproductor de Musica/v16/.suo
index e139d5a..638c278 100644
Binary files a/.vs/Reproductor de Musica/v16/.suo and b/.vs/Reproductor de Musica/v16/.suo differ
diff --git a/Reproductor de Musica/IMG/no_found_music.jpg b/Reproductor de Musica/IMG/no_found_music.jpg
new file mode 100644
index 0000000..8ee8e94
Binary files /dev/null and b/Reproductor de Musica/IMG/no_found_music.jpg differ
diff --git a/Reproductor de Musica/MainWindow.xaml b/Reproductor de Musica/MainWindow.xaml
index 19efc8d..af16167 100644
--- a/Reproductor de Musica/MainWindow.xaml
+++ b/Reproductor de Musica/MainWindow.xaml
@@ -52,7 +52,7 @@
-
+
@@ -90,8 +90,8 @@
-
-
+
+
@@ -122,6 +122,7 @@
+
diff --git a/Reproductor de Musica/MainWindow.xaml.cs b/Reproductor de Musica/MainWindow.xaml.cs
index 566a465..b9a1b20 100644
--- a/Reproductor de Musica/MainWindow.xaml.cs
+++ b/Reproductor de Musica/MainWindow.xaml.cs
@@ -38,7 +38,8 @@ public partial class MainWindow : Window
private string Name_Song_URL;
public Historial historial = new Historial();
private TimeSpan position;
-
+ private int IsSelected = -1; // Comprueba que canción está seleccionada para darle color
+
private TimeSpan suma = new TimeSpan();
public WinAjuste win;
/* Si theme es igual a 0 quiere decir, que el tema será de color negro,
@@ -72,10 +73,26 @@ public MainWindow()
{
historial = Utilities.GetFile("historial");
URLS = historial.LURL;
-
+ int i = 0;
foreach(var data in historial.LHistory)
{
- ListBox.Items.Add(data);
+ TagLib.File tagFile = TagLib.File.Create(URLS[i], "audio/mp3", TagLib.ReadStyle.Average);
+ string str = $"Autor: {(!String.IsNullOrEmpty(tagFile.Tag.FirstAlbumArtist) ? tagFile.Tag.FirstAlbumArtist : "N/A")}.\n" +
+ $"Duración: {tagFile.Properties.Duration:hh\\:mm\\:ss}.\n" +
+ $"Tamaño: {Math.Round(new IO.FileInfo(URLS[i]).Length / 1048576d, 3)} MB.\n" +
+ $"Album: {(!String.IsNullOrEmpty(tagFile.Tag.Album) ? tagFile.Tag.Album : "N/A")}.";
+ ToolTip toolTip = new ToolTip
+ {
+ Content = str
+ };
+ TextBlock tb = new TextBlock
+ {
+ Text = data,
+ ToolTip = toolTip
+ };
+
+ ListBox.Items.Add(tb);
+ i++;
}
}
@@ -203,9 +220,12 @@ private void TextBlock_MouseLeftButtonDown(object sender, MouseButtonEventArgs e
mediaPlayer.MediaOpened += MediaPlayer_MediaOpened;
TagLib.File tagFile = TagLib.File.Create(fd.FileName, "audio/mp3", TagLib.ReadStyle.Average);
-
- string str = $"Autor: {((tagFile.Tag.FirstAlbumArtist != "") ? tagFile.Tag.FirstAlbumArtist : "N/A")}";
+
+ string str = $"Autor: {(!String.IsNullOrEmpty(tagFile.Tag.FirstAlbumArtist) ? tagFile.Tag.FirstAlbumArtist : "N/A")}.\n" +
+ $"Duración: {tagFile.Properties.Duration:hh\\:mm\\:ss}.\n" +
+ $"Tamaño: {Math.Round(new IO.FileInfo(fd.FileName).Length/ 1048576d, 3)} MB.\n" +
+ $"Album: {(!String.IsNullOrEmpty(tagFile.Tag.Album) ? tagFile.Tag.Album : "N/A")}.";
ToolTip toolTip = new ToolTip
{
Content = str
@@ -217,9 +237,17 @@ private void TextBlock_MouseLeftButtonDown(object sender, MouseButtonEventArgs e
};
ListBox.Items.Add(tb);
URLS.Add(fd.FileName);
- //TextBlock_Author_Name.Text = TagLib.File.Create(fd.FileName).Tag.FirstAlbumArtist;
+
+ //Comprueba si el objeto anterior está seleccionado, si es así, se lo quita para ponerselo al actual.
+ if (IsSelected != -1)
+ ((TextBlock)ListBox.Items[IsSelected]).Foreground = Brushes.White;
+
ListBox.SelectedIndex = ListBox.Items.Count - 1;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Foreground = (Brush) new BrushConverter().ConvertFrom("#FFFE4164");
+
+ IsSelected = ListBox.SelectedIndex;
+
suma += tagFile.Properties.Duration;
}
@@ -269,7 +297,23 @@ private void TextBlock_MouseLeftButtonDown(object sender, MouseButtonEventArgs e
for(int i = 0; i != len; ++i)
{
TagLib.File tagFile = TagLib.File.Create(fd.FileNames[i], "audio/mp3", TagLib.ReadStyle.Average);
- ListBox.Items.Add($"{ListBox.Items.Count + 1} - {IO.Path.GetFileNameWithoutExtension(fd.SafeFileNames[i])}");
+
+ string str = $"Autor: {(!String.IsNullOrEmpty(tagFile.Tag.FirstAlbumArtist) ? tagFile.Tag.FirstAlbumArtist : "N/A")}.\n" +
+ $"Duración: {tagFile.Properties.Duration:hh\\:mm\\:ss}.\n" +
+ $"Tamaño: {Math.Round(new IO.FileInfo(fd.FileNames[i]).Length / 1048576d, 3)} MB.\n" +
+ $"Album: {(!String.IsNullOrEmpty(tagFile.Tag.Album) ? tagFile.Tag.Album : "N/A")}.";
+
+ ToolTip toolTip = new ToolTip
+ {
+ Content = str
+ };
+ TextBlock tb = new TextBlock
+ {
+ Text = $"{ListBox.Items.Count + 1} - {IO.Path.GetFileNameWithoutExtension(fd.SafeFileNames[i])}",
+ ToolTip = toolTip
+ };
+
+ ListBox.Items.Add(tb);
//ListBox.Items.Add($"{ListBox.Items.Count + 1} - {tagFile.Properties.N}");
URLS.Add(fd.FileNames[i]);
@@ -303,11 +347,31 @@ private void MediaPlayer_MediaOpened(object sender, EventArgs e)
mediaPlayer.Play();
GetFavorite();
- int data = ListBox.SelectedIndex;
+
TextBlock_Info_PlayList.Text = $"Duración total: {suma:dd\\:hh\\:mm\\:ss}";
- TextBlock_Author_Name.Text = TagLib.File.Create(URLS[ListBox.SelectedIndex], "audio/mp3", TagLib.ReadStyle.Average).Tag.FirstAlbumArtist;
+ TagLib.File tagLib = TagLib.File.Create(URLS[ListBox.SelectedIndex], "audio/mp3", TagLib.ReadStyle.Average);
+ TextBlock_Author_Name.Text = tagLib.Tag.FirstAlbumArtist;
+
Name_Music.Text = IO.Path.GetFileNameWithoutExtension(URLS[ListBox.SelectedIndex]);
+ // Agregamos la imagen de la música
+ if (tagLib.Tag.Pictures.Length > 0)
+ {
+ TagLib.IPicture picture = tagLib.Tag.Pictures[0];
+ IO.MemoryStream ms = new IO.MemoryStream(picture.Data.Data);
+
+ BitmapImage bitmap = new BitmapImage();
+ bitmap.BeginInit();
+ bitmap.StreamSource = ms;
+ bitmap.EndInit();
+
+ Image_Song.Source = bitmap;
+ }
+ else
+ {
+ Image_Song.Source = new BitmapImage(new Uri(@"pack://application:,,,/IMG/no_found_music.jpg"));
+ }
+
Name_Music.ToolTip = new ToolTip()
{
Content = Name_Music.Text,
@@ -395,25 +459,33 @@ private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e
}
-
+
private void ListBox_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
- DispatcherTimer timer = new DispatcherTimer
+ if (ListBox.SelectedIndex != -1)
{
- Interval = TimeSpan.FromSeconds(1)
- };
- timer.Tick += Timer_Tick;
- timer.Start();
+ DispatcherTimer timer = new DispatcherTimer
+ {
+ Interval = TimeSpan.FromSeconds(1)
+ };
+ timer.Tick += Timer_Tick;
+ timer.Start();
- mediaPlayer.MediaOpened += MediaPlayer_MediaOpened;
+ mediaPlayer.MediaOpened += MediaPlayer_MediaOpened;
- mediaPlayer.Open(new Uri(URLS[ListBox.SelectedIndex]));
+ mediaPlayer.Open(new Uri(URLS[ListBox.SelectedIndex]));
- IsPaused = true;
- Button_Pause_Click(sender, e);
- mediaPlayer.Play();
+ if (IsSelected != -1)
+ ((TextBlock)ListBox.Items[IsSelected]).Foreground = Brushes.White;
+
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Foreground = (Brush)new BrushConverter().ConvertFrom("#FFFE4164");
+ IsSelected = ListBox.SelectedIndex;
+ IsPaused = true;
+ Button_Pause_Click(sender, e);
+ mediaPlayer.Play();
- //GetFavorite();
+ GetFavorite();
+ }
}
private void ListBox_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
@@ -470,6 +542,7 @@ private void Image_MouseLeave(object sender, MouseEventArgs e)
img.Source = new BitmapImage(new Uri(@"pack://application:,,,/IMG/Repetir/actualizar.png"));
}
+ //Mover las canciones, anterior y siguiente.
private void Image_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
Image img = (Image)sender;
@@ -479,19 +552,28 @@ private void Image_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
if (ListBox.Items.Count == 1)
{
mediaPlayer.Open(new Uri(URLS[0]));
+
}
else if(ListBox.SelectedIndex == ListBox.Items.Count - 1)
{
mediaPlayer.Open(new Uri(URLS[0]));
- Name_Music.Text = ListBox.Items[0].ToString();
+ Name_Music.Text = ((TextBlock)ListBox.Items[0]).Name;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Foreground = Brushes.White;
+ ((TextBlock)ListBox.Items[0]).Foreground = (Brush) new BrushConverter().ConvertFrom("#FFFE4164");
ListBox.SelectedIndex = 0;
+ IsSelected = 0;
+
}
else
{
mediaPlayer.Open(new Uri(URLS[ListBox.SelectedIndex + 1]));
- Name_Music.Text = ListBox.Items[ListBox.SelectedIndex + 1].ToString();
+
+ Name_Music.Text = ((TextBlock)ListBox.Items[ListBox.SelectedIndex + 1]).Name;
ListBox.SelectedIndex += 1;
+ IsSelected = ListBox.SelectedIndex;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex - 1]).Foreground = Brushes.White;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Foreground = (Brush)new BrushConverter().ConvertFrom("#FFFE4164");
}
IsPaused = true;
@@ -511,8 +593,12 @@ private void Image_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
mediaPlayer.Open(new Uri(URLS[ListBox.SelectedIndex - 1]));
- Name_Music.Text = ListBox.Items[ListBox.SelectedIndex - 1].ToString();
+ Name_Music.Text = ((TextBlock)ListBox.Items[ListBox.SelectedIndex - 1]).Name;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Foreground = Brushes.White;
+ ((TextBlock)ListBox.Items[ListBox.SelectedIndex - 1]).Foreground = (Brush)new BrushConverter().ConvertFrom("#FFFE4164");
ListBox.SelectedIndex -= 1;
+ IsSelected = ListBox.SelectedIndex;
+
}
IsPaused = true;
Button_Pause_Click(sender, e);
@@ -611,16 +697,39 @@ private void TextBlock_Favorite_MouseLeftButtonDown(object sender, MouseButtonEv
{
if (!IsFavorited)
{
- LAux_Songs = ListBox.Items.OfType().ToList();
+ //LAux_Songs = ListBox.Items.OfType().ToList();
+ LAux_Songs.Clear();
+ foreach(var data in ListBox.Items)
+ {
+ LAux_Songs.Add(((TextBlock)data).Text);
+ }
LAux_URLS = new List(URLS);
ListBox.Items.Clear();
URLS.Clear();
URLS = F_URLS.ToList();
+ int i = 0;
foreach (var data in ListFavorites)
{
- ListBox.Items.Add(data);
+ TagLib.File tagFile = TagLib.File.Create(URLS[i], "audio/mp3", TagLib.ReadStyle.Average);
+
+ string str = $"Autor: {(!String.IsNullOrEmpty(tagFile.Tag.FirstAlbumArtist) ? tagFile.Tag.FirstAlbumArtist : "N/A")}.\n" +
+ $"Duración: {tagFile.Properties.Duration:hh\\:mm\\:ss}.\n" +
+ $"Tamaño: {Math.Round(new IO.FileInfo(URLS[i]).Length / 1048576d, 3)} MB.\n" +
+ $"Album: {(!String.IsNullOrEmpty(tagFile.Tag.Album) ? tagFile.Tag.Album : "N/A")}.";
+
+ ToolTip toolTip = new ToolTip
+ {
+ Content = str
+ };
+ TextBlock tb = new TextBlock
+ {
+ Text = data,
+ ToolTip = toolTip
+ };
+
+ ListBox.Items.Add(tb);
}
IsFavorited = true;
TextBlock_Favorite.Text = "PlayList";
@@ -630,12 +739,33 @@ private void TextBlock_Favorite_MouseLeftButtonDown(object sender, MouseButtonEv
TextBlock_Favorite.Text = "Favoritas";
ListBox.Items.Clear();
URLS.Clear();
+ int i = 0;
+ URLS = LAux_URLS.ToList();
+
foreach (var data in LAux_Songs)
{
- ListBox.Items.Add(data);
+ TagLib.File tagFile = TagLib.File.Create(URLS[i], "audio/mp3", TagLib.ReadStyle.Average);
+
+ string str = $"Autor: {(!String.IsNullOrEmpty(tagFile.Tag.FirstAlbumArtist) ? tagFile.Tag.FirstAlbumArtist : "N/A")}.\n" +
+ $"Duración: {tagFile.Properties.Duration:hh\\:mm\\:ss}.\n" +
+ $"Tamaño: {Math.Round(new IO.FileInfo(URLS[i]).Length / 1048576d, 3)} MB.\n" +
+ $"Album: {(!String.IsNullOrEmpty(tagFile.Tag.Album) ? tagFile.Tag.Album : "N/A")}.";
+
+ ToolTip toolTip = new ToolTip
+ {
+ Content = str
+ };
+ TextBlock tb = new TextBlock
+ {
+ Text = data,
+ ToolTip = toolTip
+ };
+
+ ListBox.Items.Add(tb);
+ i++;
}
- URLS = LAux_URLS.ToList();
+
IsFavorited = false;
}
@@ -649,9 +779,9 @@ private void GetFavorite()
if (ListFavorites.Count != 0 && ListBox.SelectedIndex != -1)
{
List aux = new List(ListFavorites);
-
- string str = ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).ToString();
-
+
+ string str = ((TextBlock)ListBox.Items[ListBox.SelectedIndex]).Text;
+
if (!IsFavorited)
str = str.Remove(0, 4);
@@ -751,7 +881,18 @@ public void GetTheme()
public void SaveHistorial(string pathname = "", bool varias = true)
{
-
+ if (IsFavorited)
+ {
+ ListBox.Items.Clear();
+ foreach(var data in LAux_Songs)
+ {
+ ListBox.Items.Add(new TextBlock{Text = data});
+ }
+
+ URLS.Clear();
+
+ URLS = LAux_URLS.ToList();
+ }
Historial historiall = new Historial
{
LURL = URLS
@@ -762,7 +903,7 @@ public void SaveHistorial(string pathname = "", bool varias = true)
{
foreach(var data in ListBox.Items)
{
- historiall.LHistory.Add(((TextBlock)data).ToString());
+ historiall.LHistory.Add(((TextBlock)data).Text);
}
}
Utilities.SaveData("historial", historiall);
diff --git a/Reproductor de Musica/Reproductor de Musica.csproj b/Reproductor de Musica/Reproductor de Musica.csproj
index face4e6..6313d65 100644
--- a/Reproductor de Musica/Reproductor de Musica.csproj
+++ b/Reproductor de Musica/Reproductor de Musica.csproj
@@ -238,7 +238,9 @@
false
-
+
+
+
diff --git a/Reproductor de Musica/bin/Debug/Reproductor de Musica.application b/Reproductor de Musica/bin/Debug/Reproductor de Musica.application
index 92ad1bf..e41ff2c 100644
--- a/Reproductor de Musica/bin/Debug/Reproductor de Musica.application
+++ b/Reproductor de Musica/bin/Debug/Reproductor de Musica.application
@@ -14,7 +14,7 @@
- TjmJkNSZEgKXGykfzdkT/exQl7pO8JZOiCtkXGVkibw=
+ Qq2EYfy7E53c+SuFYOeV6ZYQ8oPXXDdThbg0Ek6EOh0=
diff --git a/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe b/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe
index bb2bd73..4d6e6a6 100644
Binary files a/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe and b/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe differ
diff --git a/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe.manifest b/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe.manifest
index 398fd70..ef2ff5c 100644
--- a/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe.manifest
+++ b/Reproductor de Musica/bin/Debug/Reproductor de Musica.exe.manifest
@@ -43,14 +43,14 @@
-
+
- Avrn13V4AWFwoLUATWTrbarLpKZjSMPYrjr0awBWvjk=
+ ZMaFr2HucM1Lk/yU2f9HuUet5205vsS+5r0nRSw2F/4=
diff --git a/Reproductor de Musica/bin/Debug/Reproductor de Musica.pdb b/Reproductor de Musica/bin/Debug/Reproductor de Musica.pdb
index 856da03..eb7d445 100644
Binary files a/Reproductor de Musica/bin/Debug/Reproductor de Musica.pdb and b/Reproductor de Musica/bin/Debug/Reproductor de Musica.pdb differ
diff --git a/Reproductor de Musica/bin/Debug/app.publish/Reproductor de Musica.exe b/Reproductor de Musica/bin/Debug/app.publish/Reproductor de Musica.exe
index bb2bd73..4d6e6a6 100644
Binary files a/Reproductor de Musica/bin/Debug/app.publish/Reproductor de Musica.exe and b/Reproductor de Musica/bin/Debug/app.publish/Reproductor de Musica.exe differ
diff --git a/Reproductor de Musica/bin/Debug/historial.pytham b/Reproductor de Musica/bin/Debug/historial.pytham
index 8c4f29d..b460ed7 100644
Binary files a/Reproductor de Musica/bin/Debug/historial.pytham and b/Reproductor de Musica/bin/Debug/historial.pytham differ
diff --git a/Reproductor de Musica/bin/Debug/historial_favorites.pytham b/Reproductor de Musica/bin/Debug/historial_favorites.pytham
index 6a42c49..f19906e 100644
Binary files a/Reproductor de Musica/bin/Debug/historial_favorites.pytham and b/Reproductor de Musica/bin/Debug/historial_favorites.pytham differ
diff --git a/Reproductor de Musica/bin/Debug/vp.pytham b/Reproductor de Musica/bin/Debug/vp.pytham
index b70ce7e..613c76b 100644
Binary files a/Reproductor de Musica/bin/Debug/vp.pytham and b/Reproductor de Musica/bin/Debug/vp.pytham differ
diff --git a/Reproductor de Musica/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Reproductor de Musica/obj/Debug/DesignTimeResolveAssemblyReferences.cache
index 54efd60..5d497b7 100644
Binary files a/Reproductor de Musica/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Reproductor de Musica/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/Reproductor de Musica/obj/Debug/MainWindow.baml b/Reproductor de Musica/obj/Debug/MainWindow.baml
index 8f0e395..c74b4cb 100644
Binary files a/Reproductor de Musica/obj/Debug/MainWindow.baml and b/Reproductor de Musica/obj/Debug/MainWindow.baml differ
diff --git a/Reproductor de Musica/obj/Debug/MainWindow.g.cs b/Reproductor de Musica/obj/Debug/MainWindow.g.cs
index 0aa4c13..d78ddc0 100644
--- a/Reproductor de Musica/obj/Debug/MainWindow.g.cs
+++ b/Reproductor de Musica/obj/Debug/MainWindow.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "21D8CFBAE9311CAF5866DDE7154DA746B8B5DAF87DAFD0BD11E0841FEE2BCD5E"
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3E131495EBF2A057A7813EBF98052D30AF370ED71466659A269E20122FFD2EBB"
//------------------------------------------------------------------------------
//
// Este código fue generado por una herramienta.
@@ -304,6 +304,14 @@ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.I
#line default
#line hidden
+
+ #line 125 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Image Image_Song;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -717,6 +725,9 @@ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object
#line default
#line hidden
return;
+ case 35:
+ this.Image_Song = ((System.Windows.Controls.Image)(target));
+ return;
}
this._contentLoaded = true;
}
diff --git a/Reproductor de Musica/obj/Debug/MainWindow.g.i.cs b/Reproductor de Musica/obj/Debug/MainWindow.g.i.cs
index 0aa4c13..d78ddc0 100644
--- a/Reproductor de Musica/obj/Debug/MainWindow.g.i.cs
+++ b/Reproductor de Musica/obj/Debug/MainWindow.g.i.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "21D8CFBAE9311CAF5866DDE7154DA746B8B5DAF87DAFD0BD11E0841FEE2BCD5E"
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3E131495EBF2A057A7813EBF98052D30AF370ED71466659A269E20122FFD2EBB"
//------------------------------------------------------------------------------
//
// Este código fue generado por una herramienta.
@@ -304,6 +304,14 @@ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.I
#line default
#line hidden
+
+ #line 125 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Image Image_Song;
+
+ #line default
+ #line hidden
+
private bool _contentLoaded;
///
@@ -717,6 +725,9 @@ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object
#line default
#line hidden
return;
+ case 35:
+ this.Image_Song = ((System.Windows.Controls.Image)(target));
+ return;
}
this._contentLoaded = true;
}
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.application b/Reproductor de Musica/obj/Debug/Reproductor de Musica.application
index 92ad1bf..e41ff2c 100644
--- a/Reproductor de Musica/obj/Debug/Reproductor de Musica.application
+++ b/Reproductor de Musica/obj/Debug/Reproductor de Musica.application
@@ -14,7 +14,7 @@
- TjmJkNSZEgKXGykfzdkT/exQl7pO8JZOiCtkXGVkibw=
+ Qq2EYfy7E53c+SuFYOeV6ZYQ8oPXXDdThbg0Ek6EOh0=
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.csprojAssemblyReference.cache b/Reproductor de Musica/obj/Debug/Reproductor de Musica.csprojAssemblyReference.cache
index 6c567a4..993f164 100644
Binary files a/Reproductor de Musica/obj/Debug/Reproductor de Musica.csprojAssemblyReference.cache and b/Reproductor de Musica/obj/Debug/Reproductor de Musica.csprojAssemblyReference.cache differ
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe b/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe
index bb2bd73..4d6e6a6 100644
Binary files a/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe and b/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe differ
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe.manifest b/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe.manifest
index 398fd70..ef2ff5c 100644
--- a/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe.manifest
+++ b/Reproductor de Musica/obj/Debug/Reproductor de Musica.exe.manifest
@@ -43,14 +43,14 @@
-
+
- Avrn13V4AWFwoLUATWTrbarLpKZjSMPYrjr0awBWvjk=
+ ZMaFr2HucM1Lk/yU2f9HuUet5205vsS+5r0nRSw2F/4=
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.g.resources b/Reproductor de Musica/obj/Debug/Reproductor de Musica.g.resources
index a0b2657..3623938 100644
Binary files a/Reproductor de Musica/obj/Debug/Reproductor de Musica.g.resources and b/Reproductor de Musica/obj/Debug/Reproductor de Musica.g.resources differ
diff --git a/Reproductor de Musica/obj/Debug/Reproductor de Musica.pdb b/Reproductor de Musica/obj/Debug/Reproductor de Musica.pdb
index 856da03..eb7d445 100644
Binary files a/Reproductor de Musica/obj/Debug/Reproductor de Musica.pdb and b/Reproductor de Musica/obj/Debug/Reproductor de Musica.pdb differ