New Post: SelectAllOnGotFocus not working when DecimalUpDown control is used...
that worked brilliantly. Thanks so much. Problem solved.
View ArticleNew Post: DecimalUpDown FormatString
Is there a way to make the DecimalUpDown control display values like say: "0.1 g/l". For example when displaying concentration around my app I use a ContentStringFormat: "{} {0} g/l" What do you think...
View ArticleNew Post: DecimalUpDown FormatString
Hello, Try using the "FormatString" property on the DecimalupDown.<xctk:DecimalUpDown Value="0.1" FormatString="{}0.0 g/l" Width="100"/>
View ArticleNew Post: Wizard: Raise event when the Next Button is clicked on a wizard page.
I do not see these two events with 1.5 version, have they been added later?
View ArticleNew Post: Wizard: Raise event when the Next Button is clicked on a wizard page.
Hello, The "Leave" and "Enter" events of the WizardPage have been added in the 2.0 version.
View ArticleNew Post: MessageBox Close Button Problem
Hi, Can you describe the images ? I'm on Windows8 and I believe those 2 screenshots are on Windows7. Which one is the mouseOver and which one is the mouseLeave ? What is the difference with a normal...
View ArticleNew Post: MessageBox Close Button Problem
Please Careful Look at Close Button Image Bottom left One is rounded the Other One is Right Angle.
View ArticleNew Post: Encapsulate property item editor
Hi, I defined a generic class to encapsulate all my 'actual' properties. class MyProperty<T> { public T Value { get; set; } public bool IsRecall { get; set; } } Assume i have an instance of the...
View ArticleNew Post: MessageBox Close Button Problem
Issue https://wpftoolkit.codeplex.com/workitem/20173 has been created.
View ArticleNew Post: Encapsulate property item editor
Does the documentation on CustomEditor of PropertyGrid helps ? You can find it here : https://wpftoolkit.codeplex.com/wikipage?title=PropertyGrid&referringTitle=Documentation
View ArticleNew Post: Encapsulate property item editor
Hi, thanks for the reply. I read the PropertyGrid documentation already several times, it was helpful but not for this question. Maybe i should rephrase; I know how to create a custom editor, that is...
View ArticleNew Post: Encapsulate property item editor
Hi, There is currently no method returning what you want. Would having the properties expanded by default could resolve your problem ? If so, there is already an issue created for this purpose :...
View ArticleNew Post: Encapsulate property item editor
Hi, That would help as a workaround. Was looking into that already, but stumbled on the collection editor which i would have to modify in the WPF toolkit in order to expand everything based on the...
View ArticleNew Post: DecimalUpDown issues
Sorry not to have gotten back to this sooner, but I was temporarily moved onto a different project and I lost focus on this. 1) I often have to run with break on exception turned on, and I then have to...
View ArticleNew Post: DecimalUpDown issues
Hi, For 2), Can you try with the latest version of the toolkit ? I can see a strange behavior when I used v1.7 of the Toolkit. Since then, v1.8, v1.9 and v2.0 looks good when typing '0', '.', '0', '5'...
View ArticleNew Post: PropertyGrid - Showing HorizontalContentAlignment and...
In my application I have a MyCanvas class (a class derived from canvas) and I drag and drop items on that MyCanvas. The Items that are dragged and dropped are of CanvasItem class which is derived from...
View ArticleNew Post: PropertyGrid - Showing HorizontalContentAlignment and...
Hi, I believe the problem is in the MyCanvas or CanvasItem classes. Maybe a "TemplateBinding HorizontalContentAlignment" is missing. Using a sample like the following moves the Horizontal and Vertical...
View ArticleNew Post: PropertyGrid: I don't want type names to show for ExpandableObjects
Hi, In the example below, I'm binding the WPF Toolkit PropertyGrid to a School object, which contains Person objects. The Person objects can be expanded, thanks to the ExpandableObject attribute. But...
View ArticleNew Post: PropertyGrid: I don't want type names to show for ExpandableObjects
Hi, Simply override the ToString() method in Person to return something, like ; public override string ToString() { return FirstName + " " + LastName; }
View Article