diff --git a/Aurora/Design/Components/DataGrid/DataGrid.xaml b/Aurora/Design/Components/DataGrid/DataGrid.xaml
index e93ba85..d6ae78c 100644
--- a/Aurora/Design/Components/DataGrid/DataGrid.xaml
+++ b/Aurora/Design/Components/DataGrid/DataGrid.xaml
@@ -87,6 +87,7 @@
+
_internalItems;
+ private ObservableCollection
\ No newline at end of file
diff --git a/Aurora/Design/Views/Artists/ArtistsViewModel.cs b/Aurora/Design/Views/Artists/ArtistsViewModel.cs
index 5ffd44a..aa9cb03 100644
--- a/Aurora/Design/Views/Artists/ArtistsViewModel.cs
+++ b/Aurora/Design/Views/Artists/ArtistsViewModel.cs
@@ -1,10 +1,19 @@
using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Threading.Tasks;
namespace Aurora.Design.Views.Artists
{
+ public class TestObj
+ {
+ public string Test1 { get; set; }
+ public string Test2 { get; set; }
+ }
public class ArtistsViewModel : BaseViewModel
{
public ArtistsViewModel()
{
}
+
}
}
diff --git a/Aurora/Design/Views/Party/PartyView.xaml b/Aurora/Design/Views/Party/PartyView.xaml
index db599dd..8992fe9 100644
--- a/Aurora/Design/Views/Party/PartyView.xaml
+++ b/Aurora/Design/Views/Party/PartyView.xaml
@@ -3,6 +3,7 @@
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:ml="clr-namespace:Aurora.Design.Components.MemberList"
+ xmlns:dg="clr-namespace:Aurora.Design.Components.DataGrid"
xmlns:library="clr-namespace:Aurora.Design.Components.Library"
x:Class="Aurora.Design.Views.Party.PartyView">
@@ -20,17 +21,97 @@
Members="{Binding Members}"/>
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ White
+
+
+
+
+ Transparent
+
+
+
+ ItemDoubleClicked="{Binding PlayCommand}"/> -->
+
\ No newline at end of file
diff --git a/Aurora/Design/Views/Party/PartyViewModel.cs b/Aurora/Design/Views/Party/PartyViewModel.cs
index ac7d792..71155f1 100644
--- a/Aurora/Design/Views/Party/PartyViewModel.cs
+++ b/Aurora/Design/Views/Party/PartyViewModel.cs
@@ -390,6 +390,7 @@ namespace Aurora.Design.Views.Party
_client.RemoteSyncClient);
Queue.Add(remote);
+ OnPropertyChanged("Queue");
}
}
catch (Exception ex)