Skip to content

Commit fb17b76

Browse files
Add changes after review
1 parent 9574599 commit fb17b76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class ResizableDataRow : Control, IResizeHelperOwner {
3232

3333
### Persist Row Height with an Attached Property
3434

35-
The `RowHeight` attached property stores the height value in the `RowState` object. The grid uses this value to restore the row height after scrolling or refreshing. The `ResizableDataRow` control gets and sets the row height through the `RowState`:
35+
The `RowHeight` attached property stores the height value in the `RowState` property. The grid uses this value to restore the row height after scrolling or refreshing. The `ResizableDataRow` control gets and sets the row height through the `RowState` property:
3636

3737
```csharp
3838
public static void SetRowHeight(DependencyObject element, double value) {
@@ -46,7 +46,7 @@ public static double GetRowHeight(DependencyObject element) {
4646

4747
### Define a Row Template
4848

49-
The [`DataRowTemplate`](https://docs.devexpress.com/WPF/DevExpress.Xpf.Grid.TableView.DataRowTemplate) contains a `ContentControl` that displays the default row content and a `ResizableDataRow` control with a `RowSplitter` to change the row height:
49+
The template assigned to the [`DataRowTemplate`](https://docs.devexpress.com/WPF/DevExpress.Xpf.Grid.TableView.DataRowTemplate) property defines a `ContentControl` that displays the default row content and a `ResizableDataRow` control with a `RowSplitter` to change the row height:
5050

5151
```xaml
5252
<DataTemplate x:Key="PersistentRowStateDataRowTemplate">

0 commit comments

Comments
 (0)