Skip to content
This repository was archived by the owner on Sep 12, 2020. It is now read-only.

v0.2.7 Release

Choose a tag to compare

@lecode-official lecode-official released this 28 Mar 21:17
· 232 commits to master since this release

Fixed a problem in the enum display name value converter. If the resource existed, but was empty, then not an empty string, but the name of the enum value was returned. Also added a custom boolean to visibility value converter, which, unlike the standard boolean to visibility converter, does not return DependencyProperty.UnsetValue, when the input value is null, but it returns Visibility.Collapsed. This is very helpful, when the binding is asynchronous, because in an asynchronous binding, the value can be undetermined (i.e. null) for a short period of time, which results in the control to be displayed for a short period of time, even if the binding value eventually evaluates to false.