Skip to content

Commit d08162f

Browse files
Update README.md
1 parent cc713d3 commit d08162f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# How to create a custom column from existing column in wpf and uwp datagrid
1+
# How to Create a Custom Column from Existing Column in WPF / UWP DataGrid?
22

3-
This repositories contains the samples to create custom column from existing columnm in [WPF DataGrid](https://www.syncfusion.com/wpf-controls/datagrid) and [UWP DataGrid](https://www.syncfusion.com/uwp-ui-controls/datagrid).
3+
This repositories contains the samples to create custom column from existing columnm in [WPF DataGrid](https://www.syncfusion.com/wpf-controls/datagrid) and [UWP DataGrid](https://www.syncfusion.com/uwp-ui-controls/datagrid) (SfDataGrid).
44

5-
You can create your own column by overriding the [predefined column types](https://help.syncfusion.com/wpf/datagrid/column-types#_Overriding_existing_cell) in `SfDataGrid`. For example, the `GridDateTimeColumn` loads the DateTime value by default. If you want to display `DateTimeOffset` value, you can create a new column by overriding the `GridDateTimeColumn` class.
5+
You can create your own column by overriding the [predefined column types](https://help.syncfusion.com/wpf/datagrid/column-types#_Overriding_existing_cell) in DataGrid. For example, the **GridDateTimeColumn** loads the DateTime value by default. If you want to display `DateTimeOffset` value, you can create a new column by overriding the `GridDateTimeColumn` class.
66

77
In the below code snippet, converter created to format the `DateTimeOffSet` value to DateTime by defining `ValueBinding` (edit) and `DisplayBinding` (non-edit).
88

@@ -140,4 +140,4 @@ this.datagrid1.Columns.Add(new GridDateTimeOffsetColumn()
140140
Pattern = Syncfusion.Windows.Shared.DateTimePattern.FullDateTime,
141141
UseBindingValue = true
142142
});
143-
```
143+
```

0 commit comments

Comments
 (0)