Skip to content

Commit

Permalink
Supporting Fetch Options etc. Closing #1021
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Apr 7, 2024
1 parent 02420ff commit 0f0a4a8
Show file tree
Hide file tree
Showing 4 changed files with 461 additions and 67 deletions.
1 change: 1 addition & 0 deletions FXBEditorUtils/ControlUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public static void FillControls(Dictionary<string, string> collection, Control.C
}
controls.OfType<Control>().Where(y => y.Tag != null).OrderBy(y => y.TabIndex).ToList().ForEach(c => FillControl(collection, c, saveable));
controls.OfType<Panel>().OrderBy(p => p.TabIndex).ToList().ForEach(p => FillControls(collection, p.Controls, saveable));
controls.OfType<GroupBox>().OrderBy(g => g.TabIndex).ToList().ForEach(g => FillControls(collection, g.Controls, saveable));
}

private class TextBoxEventHandler
Expand Down
Loading

0 comments on commit 0f0a4a8

Please sign in to comment.