Re: When the Minimum property is changed, the Value property becomes null.
Thank you for your investigation.We look forward to the release of the next version.
View ArticleRe: When the Minimum property is changed, the Value property becomes null.
Hello, Thank you for the sample steps. We debugged this and oddly it seems that the coerce callback for the Value property on the second time passes in the the original "output" edit box's Value...
View ArticleWhen the Minimum property is changed, the Value property becomes null.
Hello, There is unexpected behavior with the Int32EditBox. Could you please confirm whether this is intended behavior or a bug? Issue:When the Minimum property is changed, the Value property ...
View ArticleRe: Int32EditBox cannot apply UpdateSourceTrigger
Hi Chris, Yes please see this topic as it points you to the CommitTriggers property, which is what you'd set to control updates to the Value property.
View ArticleInt32EditBox cannot apply UpdateSourceTrigger
<editors: Int32EditBox Value="{Binding MyValue, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" /> When I enter a number in the Int32EditBox and specify PropertyChanged, it does not take...
View ArticleRe: Multi editor in Property grid for nested types
Hello, Please send the sample project to our support address and we will debug with it to see what's happening. In your email, reference this thread. Also be sure to exclude the bin/obj folders...
View ArticleMulti editor in Property grid for nested types
Hello, I have a Property grid where DataObjects are pointing to objects of type e.g. Style, this Style contains a property of type Material and each Material contains property RectangleSheet with...
View ArticleRe: Masked Textbox
Thanks for the quick answer - this would have been an easy way to support different entry types on my dynamic forms.But I will create templates where I use different controls based on the datatypes...
View ArticleRe: Masked Textbox
Hello, If you display the prompt characters, do you see two prompt dots right after the ","? If so, the MaskedTextBox control is meant to match text values against a text mask. The control does...
View ArticleMasked Textbox
Hello, I have a Masked Textbox using this mask Binding to a double property \\d+[,]\\d{2} When I enter "10,00" as value - save the value and reaload the form, "10," is shown The zeros at t...
View ArticleRe: DoubleEditBox: Disable tooltip for increment and decrement buttons
Hi Tobias, If you set it to null instead of empty string, it should work how you want.
View ArticleDoubleEditBox: Disable tooltip for increment and decrement buttons
Hi, is there a way to disable the tooltip for the increment and decrement buttons in the DoubleEditBox? I know I can overwrite the tooltip, but even an empty string is still displayed: Actipro...
View ArticleRe: EnumListBox => System.InvalidCastException: Specified cast is not valid.
Hello, Thank you for writing. From looking at that assembly, the enum seems to be based on Int16 and some comparison logic in our code didn't handle that type properly. We've fixed the bug for ...
View ArticleEnumListBox => System.InvalidCastException: Specified cast is not valid.
Hello, I'm trying to use your EnumListBox to make a weekday picker but keep getting a cast error when I try to click on a day. xmlns:tasksch="clr-namespace:Microsoft.Win32.TaskSchedu...
View ArticleRe: Prevent AutoCompleteBox from selecting first suggestion item by default
Hello, We would expect it sometime in July.
View ArticleRe: Prevent AutoCompleteBox from selecting first suggestion item by default
Thanks! When will it be available?
View ArticleRe: Prevent AutoCompleteBox from selecting first suggestion item by default
Hi Thomas, We will add an AutoCompleteBox.CanAutoSelectFirstItem property for the next build that you can set to false to prevent this default behavior.
View ArticlePrevent AutoCompleteBox from selecting first suggestion item by default
I would like to use the AutoCompleteBox as a search field: The user enters text and presses Enter to start a search. Optionally, the user can select an entry from the suggestion list. Thi...
View ArticleRe: Use a datagrid to display collections in the property grid
Hi Jamie, You can put any controls in a custom value editor for a particular property type. That being said, it's not generally advisable to make property editors that are very tall since it cou...
View ArticleUse a datagrid to display collections in the property grid
Hello, In my WPF application I am using the property grid to display/configure properties with my object. My object has an observable collection of a custom type (Parameter). The default editor i...
View Article