New Post: AllowDuplicateContent in AvalonDock
Hi, Thanks for sharing, You can upload a patch via the Source Code tab or you can paste it here. We will review it and add it to the next Toolkit version.
View ArticleNew Post: PropertyGrid custom type error
I have a TargetPropertyType registered as DependencyProperty but work only with incorrect type<xctk:EditorTemplateDefinition > <xctk:EditorTemplateDefinition.TargetProperties >...
View ArticleNew Post: PropertyGrid custom type error
Hi, I would replace <TextBlock Background="{Binding Value.Brush}" /> width<TextBlock Background="{Binding Value}" /> in order to see the TextBlock Background color. You can always...
View ArticleNew Post: Hide the Object Type (Fully qualified name) for Expandable Object
Hi, When we display the expandable objects in the propertygrid the fully qualified name of the expandable object is visible as value. Is there a way to hide the same eg: In the below scenario when we...
View ArticleNew Post: Hide the Object Type (Fully qualified name) for Expandable Object
Hi, Yes you can. In the CommonDetail class, you can overwrite the "ToString()" method to display "nothing" (or any text you want) : public class CommonDetail { public override string ToString() {...
View ArticleNew Post: Hide the Object Type (Fully qualified name) for Expandable Object
Hi, Thanks man , it worked like a charm. Had wasted an entire day going through the source provided. Thanks once again :) Also the propertygrid is awesome. there is only one point which maybe can be...
View ArticleNew Post: PropertyGrid custom type error
thanks for the reply but I need of more propriertys, for exemple:<TextBlock Background="{Binding Value.Brush}" Text="{Binding Value.Name}" /> and for the type Brush i have another definition
View ArticleNew Post: PropertyGrid custom type error
Hi, Can you attach a complete sample ? It will be more clear. Thanks.
View ArticleNew Post: PropertyGrid custom type error
One of the many TemplateDefinition<xctk:EditorTemplateDefinition > <xctk:EditorTemplateDefinition.TargetProperties > <xctk:TargetPropertyType Type="{x:Type myClass}" />...
View ArticleNew Post: PropertyGrid custom type error
What is not working ? From using your code snippet, I build a working sample. Upon executing, I can see the propertyGrid with 1 property displaying its editor as you defined it in XAML.<Window...
View ArticleNew Post: PropertyGrid custom type error
SimpleSystem.Windows.Data Error: 17 : Cannot get 'Brush' value (type 'Brush') from 'Value' (type 'myClass1'). BindingExpression:Path=Value.Brush; DataItem='PropertyItem' (Name=''); target element is...
View ArticleNew Post: Click on NumericUpDown does not select a row in Datagrid
Hello! I'm using a NumericUpDown in a column of System.Windows.Comtrols.Datagrid. Click on the control allows to edit the number in it but the DataGrid row is not highlighted. On the image above the...
View ArticleNew Post: PropertyGrid custom type error
Hi, This is how you should define your classes in VB when using Dependency properties :Public Class myClass1 Inherits DependencyObject Public Shared ReadOnly BrushProperty As DependencyProperty =...
View ArticleNew Post: Click on NumericUpDown does not select a row in Datagrid
Hi, Try with AutoSelectBehavior=Never and SelectAllOnGotFocus = False :<xctk:DoubleUpDown Value="{Binding Value}" AutoSelectBehavior="Never" SelectAllOnGotFocus="False"/> In v3.2, the property...
View ArticleNew Post: Click on NumericUpDown does not select a row in Datagrid
Thanks you! SelectAllOnGotFocus="False" in Toolkit version 2.0 works for me.
View ArticleNew Post: ZoomBox - Scrollbars
Hi,A quick question please in the propertyGrid. Does it support [TypeConverter(typeof(YesNoConverter))] ?I am trying to display a bool property with Yes/No.Thanks a lotMary
View ArticleNew Post: PropertyGrid : TypeConverter for Yes/No
A users said : Hi, A quick question please in the propertyGrid. Does it support [TypeConverter(typeof(YesNoConverter))] ? I am trying to display a bool property with Yes/No. Thanks a lot Mary
View ArticleNew Post: ZoomBox - Scrollbars
Hi, Discussion https://wpftoolkit.codeplex.com/discussions/657045 has been created.
View Article