Releases: DHancock/WinUI3Controls
Releases · DHancock/WinUI3Controls
Version 2.2.1
This is a bug fix release. It fixes a single bug with the GroupBox control.
- Convention suggests that a loaded event is raised after the control's measure and layout pass have been completed but before the control is rendered. However the GroupBox control could change it's content presenter padding in it's own loaded event handler. This could cause a size changed event. While this didn't cause any issues with rendering or hit testing, if an application was recording the position of it's controls from with in it's own loaded event, the position of any controls below a GroupBox could subsequently change position unexpectedly.
Version 2.2.0
In this release the sealed class modifier has been removed from both the GroupBox and SimpleColorPicker classes.
Version 2.1.1
This is a bug fix release and includes several improvements to the SimpleColorPicker control:
- Numerous fixes to keyboard handling both within and for dismissing the colors flyout.
- Exposes the FlyoutBase.ShouldConstrainToRootBounds property (defaults to false, requires WinAppSdk >= 1.4.0 to have any effect).
- Corrects the default width of the indicator part of the split button. Previously it's default value was 3 pixels smaller than minimum split button primary button width. The default control size hasn't changed.
- When the flyout is opened, the initial selection mode can be specified (defaults to none).
- Handle Right to Left flow direction.
- Defer creation of the flyout's content until it's first shown.