Re: EnumEditBox - Omit Values
Hi Justin,We've got this working for 2017.1. Basically if you put [EditorBrowsable(EditorBrowsableState.Never)] on the enum value, it won't show in the EnumEditBox drop-down and pressing up/down won't...
View ArticleRe: EnumEditBox - Omit Values
Nice!! What a quick turnaround :) Is 2017.1 available for download somewhere? I see the latest release as 2016.1 build 0635.
View ArticleRe: EnumEditBox - Omit Values
We just started a private beta to some customers before we open it up to others. The EnumEditBox update isn't in the beta just yet but will roll into the next build. Do you have Slack? If you want...
View ArticleCan't dismiss DateTimeEditBox dropdown with Esc key
If the DateTimeEditBox dropdown is shown when the control does NOT have focus, then the dropdown can't be dismissed with the Escape key because clicking the dropdown arrow doesn't set focus to the edit...
View ArticleRe: Can't dismiss DateTimeEditBox dropdown with Esc key
Hi Phil,Thanks for reporting this. We've fixed it for the upcoming 2016.1 maintenance release.
View ArticleDateEditBox MonthCalendar disappears
I have added a DateEditBox to a ToolBar and then click dropdown arrow to open a month calendar. When I click Next - Previous arrows on the month calendar it disappears. You can view this behaviour in...
View ArticleRe: DateEditBox MonthCalendar disappears
Hi Ilya,This is happening because we are using regular WPF Buttons in those locations and Microsoft's ButtonBase.OnLostMouseCapture code will blur focus (move it back to the main focus scope) when in a...
View ArticleRe: DateEditBox MonthCalendar disappears
There is another problem with the new calendar. I use font Exo 2 in my application and arrows in the calendar is not visible with this font.Please see this screenshot
View ArticleRe: DateEditBox MonthCalendar disappears
Thank you for letting us know. We will switch to a non-font-based glyph for the next maintenance release.
View ArticleRe: EnumEditBox - Omit Values
Hello, One thing that I did not expect was that the ommitted value type is still shown when the combination of flags that represent it is selected as the value: [Flags] public enum EnumDst2 {...
View ArticleRe: EnumEditBox - Omit Values
Hello,I'm not sure we can really do anything about that since it's the string value that comes from Enum method calls.You could probably work around it by adding a DescriptionAttribute to All that is...
View ArticleRe: EnumEditBox - Omit Values
Ok, that works. Another option I found to work, would be to create a 'proxy enum' leaving out the combined flags and cast in the getters/setters, this way would avoid the need to modify enums that are...
View ArticleMulti select combo box
Do you have a multi selection combo box similar to Flags-EnumEditBox? Except instead of specifying an enum value, a list of selected items and a full list could be specified..e.gclass Properties { //...
View ArticleRe: Multi select combo box
Hello,Sorry but we don't have anything that would work for that right now. EnumEditBox is pretty tied internally to Enum-oriented usage. You could do something like use our PopupButton and in the...
View ArticleDateEditBox.CanRetainTime doesn't seem to work
DateEditBox has a property called CanRetainTime. According to the documentation if it is set to true, the time portion of the bound DateTime should be preserved when we change the date. This doesn't...
View ArticleRe: DateEditBox.CanRetainTime doesn't seem to work
Hi Ralph,Thanks for letting us know. We've fixed it for the upcoming maintenance release later this month.
View ArticleHow to Validate RegEx in MaskedTextBox
Our application allows for user-defined "masks". Currently, if the user enters an invalid RegEx for the "mask", then when this value is used at runtime (setting the Mask property of the MaskedTextBox...
View ArticleRe: How to Validate RegEx in MaskedTextBox
Hi David,At the current time that might be the only way to validate it. We could add a public static ValidateMask method on MaskedTextBox if you'd like, which could return true or false. Or would you...
View ArticleRe: DateEditBox.CanRetainTime doesn't seem to work
Fixed, but there is still a situation when it doesn't work: if you open the drop down calendar of a DateEditBox and click "today", the time of day still resets to midnight.BTW, in my opinion clicking a...
View Article