Remove unused bandEditorExpanded field from BandGridBase

The protected bool bandEditorExpanded, which tracked the expansion
state of the band editor, has been removed from BandGridBase<TItem>
as it is no longer used. This helps clean up unused state from
the component.
This commit is contained in:
OlgunR
2026-04-15 11:01:22 +02:00
parent 11374347d3
commit 7d08923444

View File

@@ -21,7 +21,6 @@ public abstract class BandGridBase<TItem> : ComponentBase
protected Dictionary<string, ColumnDefinition> columnLookup = new(); protected Dictionary<string, ColumnDefinition> columnLookup = new();
protected string? layoutUser; protected string? layoutUser;
protected bool gridLayoutApplied; protected bool gridLayoutApplied;
protected bool bandEditorExpanded;
protected IGrid? gridRef; protected IGrid? gridRef;
// --- SizeMode --- // --- SizeMode ---