@@ -65,13 +65,13 @@ The following table describes the types of columns and their usage:
6565<td >{{'[DataGridComboBoxColumn](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridComboBoxColumn.html)'| markdownify }}</td >
6666<td >{{'[DataGridComboBoxRenderer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridComboBoxRenderer.html)'| markdownify }}</td >
6767<td >ComboBox</td >
68- <td >To display a combo box control for selecting item from a predefined list. </td >
68+ <td >To display a ComboBox within each cell </td >
6969</tr >
7070<tr >
7171<td >{{`DataGridPickerColumn`| markdownify }}</td >
7272<td >{{'[DataGridPickerCellRenderer]'| markdownify }}</td >
7373<td >Picker</td >
74- <td >To display a picker control for selecting item from a predefined list. </td >
74+ <td >To display a Picker within each cell </td >
7575</tr >
7676<tr >
7777<td >{{'[DataGridUnboundColumn](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridUnboundColumn.html)'| markdownify }}</td >
@@ -1100,37 +1100,6 @@ public class ViewModel
11001100 "USA",
11011101 };
11021102}
1103- public class DealerInfo : INotifyPropertyChanged
1104- {
1105- #region Properties
1106- private string shipCountry;
1107-
1108- public event PropertyChangedEventHandler? PropertyChanged;
1109- public string ShipCountry
1110- {
1111- get
1112- {
1113- return this.shipCountry;
1114- }
1115-
1116- set
1117- {
1118- this.shipCountry = value;
1119- this.RaisePropertyChanged("ShipCountry");
1120- }
1121- }
1122- #endregion
1123-
1124- #region INotifyPropertyChanged implementation
1125- private void RaisePropertyChanged(string name)
1126- {
1127- if (this.PropertyChanged != null)
1128- {
1129- this.PropertyChanged(this, new PropertyChangedEventArgs(name));
1130- }
1131- }
1132- #endregion
1133- }
11341103{% endhighlight %}
11351104{% endtabs %}
11361105
0 commit comments