- For custom template variable names, same rule applies: `row.Property` -> `row.Item.Property`
Important: This change applies to DataGrid template contexts only (`DisplayTemplate` in `DataGridColumn`, `DataGridEntityActionsColumn`, etc.). In non-DataGrid templates (for example `TreeView``NodeContent`), `context` is already the item and should remain unchanged (for example `DeleteMenuItemAsync(context)`).
@ -90,6 +100,7 @@ DataGrid column `Width` moved from plain string to fluent sizing APIs:
- `Width="30px"` -> `Width="Width.Px(30)"`
- `Width="60px"` -> `Width="Width.Px(60)"`
- `Width="0.5rem"` -> `Width="Width.Px(8)"` (or another equivalent pixel value)
- `Width="50%"` -> `Width="Width.Percent(50)"` or `Width="Width.Is50"`