In WinForm i can programmatically add Rows on a DataGridView column(s) with loop, let say like this
private void rowsAdder()
{
for(int u = 0; u<= 10; u++)
{
classSelect.Rows.Add("Number " + u);
//classSelect is a name of a DataGridView, where the first column is a DataGridViewButtonColumn
}
}
Then my questions are :
-What are the equal ways in WPF to add Rows in a DataGrid (using looped Rows.Add()
etc) ?
-How to set the column type into ButtonColumn ?
If this help, i'm using .NET 4.5
Here is an extremely simple example :
Here is your DataGrid, its ItemsSource bounded to data which exists in the codebehind below:
Collections need to inform their bound-view elements that their contents have changed (items added or removed ), that's the job of the
ObservableCollection<Data>
.And here is the Data class:
The
INotifyPropertyChanged
interface is part of an implementation of the Observer pattern for a specific purpose: to inform subscribers that the value of a property on the publisher has just changed. So, changing those two propeties, Name or Length on the instances existing the collection will result in a View update.Let me know if you need more details about this.
Oh, i forgot, how would you add a new row ? Just handle a Click event for a Button placed somewhere on the View and add a new Data instance to data collection.
Ex: