Ustawiam obiekt Table<>
rzutowany na IEnumerable<>
jako ItemsSource
dla ListView
. Podczas startu aplikacji poprawnie wczytywana i wyświetlana jest lista z bazy danych. Jednak jeśli dokonam jakichkolwiek zmian (dodawanie, usuwanie) na liście w trakcie działania aplikacji, elementy wyświetlane w ListView
nie zmieniają się, pomimo tego, że wszystkie zmiany w Table<>
zachodzą poprawnie.
public class ProfilesSourceSQLite : IProfilesSource
{
public event EventHandler<ProfileActionEventArgs> ActionPerformed;
private Table<ProfileManager.Profile> Profiles;
public IEnumerable<ProfileManager.Profile> ProfilesCollection { get { return Profiles; } }
public ProfilesSourceSQLite()
{
...
dbContext = new DataContext(dbConnection);
Profiles = dbContext.GetTable<ProfileManager.Profile>();
}
public bool AddProfile(ProfileManager.Profile profile)
{
try
{
Profiles.InsertOnSubmit(profile);
dbContext.SubmitChanges();
}
...
if(ActionPerformed != null)
ActionPerformed(this, new ProfileActionEventArgs(ProfileAction.Add, profile));
}
}
public class ProfileManager
{
private static ProfileManager instance;
public static ProfileManager Instance
{
get
{
if (instance == null)
instance = new ProfileManager();
return instance;
}
}
private IProfilesSource profilesSource;
public IEnumerable<Profile> ProfilesCollection { get { return profilesSource.ProfilesCollection; } }
public event EventHandler ProfilesListChanged;
public ProfileManager()
{
...
profilesSource = new ProfilesSourceSQLite();
profilesSource.ActionPerformed += OnActionPerformed;
}
private void OnActionPerformed(object sender, ProfileActionEventArgs e)
{
if(ProfilesListChanged != null)
ProfilesListChanged(this, new EventArgs());
}
public bool AddProfile(Profile profile)
{
return profilesSource.AddProfile(profile);
}
}
public class ProfileManagerWindow : Window
{
public ProfileManagerWindow()
{
InitializeComponent();
ProfileManager.Instance.ProfilesListChanged += RefreshList;
listView.ItemsSource = ProfileManager.Instance.ProfilesCollection;
}
private void RefreshList(object sender, EventArgs e)
{
listView.Items.Refresh();
// kiedy na liście znajduje się 1 profil, a ja dodaję kolejny:
int x = ProfileManager.Instance.ProfilesCollection.Count; // x = 2, czyli wartość taka, jaka powinna być
int y = listView.Items.Count; // y = 1, błędna wartość, zmiana nie została uwzględniona
// Próbowałem też tak:
listView.ItemsSource = null;
listView.ItemsSource = ProfileManager.Instance.ProfilesCollection;
// ale to również nie działa
}
}
Co robię źle?
ListView
bezpośrednio wyświetlałTable<>
. Serio nie jest to możliwe w żaden sposób?