I'm writing an app in WPF, trying to use the MVVM-design pattern (which is new to me).
I have a DataGrid
bound to an ObservableCollection
.
What I'm trying to achieve:
Delete the currently selected DataGrid-row using a 'Delete'-button. I've tried a plethora of forum-posts and videos to find a solution. The solution has probably stared me right in the face several times, but at this point I'm more confused than I was when I first started.
Any assistance would be appreciated.
ViewModel (updated with working code, thanks to EldHasp):
using System;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Windows;
using GalaSoft.MvvmLight.CommandWpf;
using Ridel.Hub.Model;
namespace Ridel.Hub.ViewModel {
public class LicenseHoldersViewModel : INotifyPropertyChanged {
public ObservableCollection<LicenseHolders> licenseHolders { get; }
= new ObservableCollection<LicenseHolders>();
public LicenseHoldersViewModel() {
FillDataGridLicenseHolders();
}
private void FillDataGridLicenseHolders() {
try {
using (SqlConnection sqlCon = new(ConnectionString.connectionString))
using (SqlCommand sqlCmd = new("select * from tblLicenseHolder", sqlCon))
using (SqlDataAdapter sqlDaAd = new(sqlCmd))
using (DataSet ds = new()) {
sqlCon.Open();
sqlDaAd.Fill(ds, "tblLicenseHolder");
//if (licenseHolders == null)
//licenseHolders = new ObservableCollection<LicenseHolders>();
foreach (DataRow dr in ds.Tables[0].Rows) {
licenseHolders.Add(new LicenseHolders {
ID = Convert.ToInt32(dr[0].ToString()),
Foretaksnavn = dr[1].ToString(),
Foretaksnummer = dr[2].ToString(),
Adresse = dr[3].ToString(),
Postnummer = (int)dr[4],
Poststed = dr[5].ToString(),
BIC = dr[6].ToString(),
IBAN = dr[7].ToString(),
//Profilbilde ???
Kontaktperson = dr[8].ToString(),
Epost = dr[9].ToString(),
Tlf = dr[10].ToString()
});
}
}
} catch (Exception ex) {
MessageBox.Show(ex.Message, "Message", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
private RelayCommand<LicenseHolders> _removeLicenseHoldersCommand;
public RelayCommand<LicenseHolders> RemoveLicenseHoldersCommand => _removeLicenseHoldersCommand
?? (_removeLicenseHoldersCommand = new RelayCommand<LicenseHolders>(RemoveLicenseHolderExecute, RemoveLicenseHolderCanExecute));
private bool RemoveLicenseHolderCanExecute(LicenseHolders myLicenseHolder) {
// Checking for the removeable licenseholder in the collection
return licenseHolders.Contains(myLicenseHolder);
}
private void RemoveLicenseHolderExecute(LicenseHolders myLicenseHolder) {
licenseHolders.Remove(myLicenseHolder);
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string propertyName) {
if (PropertyChanged != null) {
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
}
Model:
public class LicenseHolders {
public string example { get; set; }
// more of the same...
}
XAML:
<Button Style="{DynamicResource ButtonWithRoundCornersGreen}"
FontSize="22" x:Name="btnDelete" Content="Delete"
Width="187" Height="47" Background="#48bb88" Foreground="White"
Canvas.Left="547" Canvas.Top="668" IsEnabled="False" Click="btnDelete_Click"/>
<DataGrid
x:Name="dgLicenseHolder"
CanUserAddRows="False"
ItemsSource="{Binding licenseHolders}"
Height="557"
Width="505"
ColumnWidth="*"
Canvas.Top="158"
FontSize="20"
IsReadOnly="True"
SelectionMode="Single"
AutoGenerateColumns="False"
CanUserDeleteRows="False"
SelectionChanged="dgLicenseHolder_SelectionChanged" Canvas.Left="31" >
<DataGrid.Columns>
<DataGridTextColumn Header="Example" Binding="{Binding Path='Example'}" IsReadOnly="True" Visibility="Collapsed"/>
// more of the same..
</DataGrid.Columns>
</DataGrid>
Code-behind:
public partial class Personell : Window {
LicenseHoldersViewModel licenseHoldersViewModel;
public Personell() {
InitializeComponent();
licenseHoldersViewModel = new LicenseHoldersViewModel();
base.DataContext = licenseHoldersViewModel;
}
}