New Post: PropertyGrid with object implementing ICustomTypeConverter to add...
Hi, Are you talking about ICustomTypeConverter or ICustomTypeDescriptor ? Can you submit a complete sample of the propertyGrid generating an error ? What is the error ? What version of the Toolkit are...
View ArticleNew Post: PropertyGrid with object implementing ICustomTypeConverter to add...
I do apologise for the confusion. I actually mean the ICustomTypeDescriptor as per the above class. The class file I have attached to the issue I raised after realising I'd created a discussion...
View ArticleNew Post: PropertyGrid with object implementing ICustomTypeConverter to add...
Hi, Using your TestClass, here is the code I used :<Grid> <xctk:PropertyGrid x:Name="_propertyGrid" /> </Grid> public MainWindow() { InitializeComponent();...
View ArticleNew Post: PropertyGrid with object implementing ICustomTypeConverter to add...
OK, It would appear I have given you the earlier version of TestClass that didn't cause the problem because it wasn't using INotifyPropertyChanged handling that the one below does use. It would appear...
View ArticleNew Post: PropertyGrid with object implementing ICustomTypeConverter to add...
My fix for this was to add the following code to DescriptorPropertyDefinition: public object GetValueInstance(object sourceObject) { ICustomTypeDescriptor customTypeDescriptor = sourceObject as...
View ArticleNew Post: PropertyGrid with object implementing ICustomTypeConverter to add...
P.S. I have just managed to update a test project that has the above two bits of code in it. You will need to link the toolkit project or fix up the reference to make it work.
View ArticleNew Post: Sample code to populate fonts and colors in property grid ?
I've been scouring this thread and have read the documentation and downloaded the sample code. I'm still struggling to populate the font dropdown and color dropdown. It's not a static propertygrid so...
View ArticleNew Post: Sample code to populate fonts and colors in property grid ?
Hi, You can use the ColorPicker as an editor for brushes. Here's an example :<Window.Resources> <local:MyColorConverter x:Key="MyColorConverter" /> </Window.Resources> <Grid>...
View ArticleNew Post: AvalonDock: Custom theme causes wrong context menu in title of...
Hi, Issue https://wpftoolkit.codeplex.com/workitem/21995 has been created.
View ArticleNew Post: Add anchorables to different sides using ILayoutUpdateStrategy in MVVM
Hi, Maybe this could help :<xcad:LayoutRoot.LeftSide> <xcad:LayoutAnchorSide> <xcad:LayoutAnchorGroup x:Name="group"> <xcad:LayoutAnchorable Title="Agenda" ContentId="agenda"...
View ArticleNew Post: Strange autohide un-hiding behavior on document close
Hi, I'm not sure how to reproduce the issue. Can you reproduce it in the LiveExplorer App, available here : https://wpftoolkit.codeplex.com/, under sample "Others/AvalonDock" ? Yes, If you're using...
View ArticleNew Post: Magnifier - Pick and leave at any point
Hi, I just started playing around with the magnifier today, and i found it quite usefull. I wanted to know id i can move the magnifier window on mouse click and move, and leave the magnifier to any...
View ArticleNew Post: Not able to save value in WPF PropertyGrid collection control.
I think the main reason you can not add an item here is actually because you have an array and arrays are of a fixed size. If you change your array to a collection of List<> or even maybe an...
View ArticleNew Post: Magnifier - Pick and leave at any point
Hi, It's a good idea, but if a text is to be magnified, using the mouse left button down should select the text, even if magnified. Here's a suggestion you can try : Start with a magnifier zoomFactor =...
View ArticleNew Post: Strange autohide un-hiding behavior on document close
If it's better, I definitely can try to reproduce it in the LiveExplorer; however, I already have a purpose-built test app which reproduces it, located...
View ArticleNew Post: DateTimePicker Time resets
Greetings everyone. I want to report a problem and also ask about a fix. When you go out of focus on the DateTimePicker it defaults the time (not date) to 0:00:00. Also time changes when you press left...
View ArticleNew Post: Strange autohide un-hiding behavior on document close
Hi, Thanks for your sample. Currently, when the active item is removed, we try to find another item to become the "active" one. If there are no more items, the first one found (from layout sides) will...
View ArticleNew Post: DateTimePicker Time resets
Hi, What version of the Toolkit are you using ? What is your system language ? Can you submit a sample with the bug ? I can not reproduce this in the latest version of the Toolkit (v2.8 Plus Edition).
View ArticleNew Post: Strange autohide un-hiding behavior on document close
Thank you for this followup; keep up the great work!
View ArticleNew Post: DoubleUpDown disable Enter action on spinner
Hi, i'm using the DoubleUpDown item, i set an increment of 0,5 and when i use the up arrow spin to change the value, the value is updated by +0,5. In this situation if i press Enter on the keyboard the...
View Article