New Post: Removing white-out when inactiviating time picker
It worked with opacity set to 0 in x:name = "Border" in the following added code to windows.resources:<Style TargetType="{x:Type xctk:WatermarkTextBox}"> <Setter Property="Template"...
View ArticleNew Post: Removing white-out when inactiviating time picker
Hi, What I can tell is that v2.5 of the toolkit has really changed the TimePicker (providing new base class and new properties). Since you are using Windows7, the "Generic.xaml" files will be used as...
View ArticleNew Post: Removing white-out when inactiviating time picker
Thanks, that is cleaner. Do you have any idea why this is part of the control by default? Changing the border background when IsEnabed= "False" doesn't seem to correspond to the operation of any other...
View ArticleNew Post: Removing white-out when inactiviating time picker
This is not part of the control in Windows8. I will remove it in Windows7. It will be included in v2.6.
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
Strangely... I downloaded the source code, and looked for some reason do not work out. The problem was that the "public SubClass Name" is ReadOnly, but it is not marked with this attribute!
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
class ObjectContainerHelperBase private FrameworkElement GenerateChildrenEditorElementif (pd.IsReadOnly) // always for my subclass editor = new TextBlockEditor();
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
Sorry, In new test project all working good...
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
I'm understood... My properties declared as: public SubClass Name { get; private set; } I create instance of this property in class constructor and I don't want recreate this instance somewhere.
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
I think it would be better not to override the custom editor, if the property is read-only. And need to change the function GenerateChildrenEditorElement in class ObjectContainerHelperBase from...
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
And more: may be create for read-only properties read-only TextBoxEditor (with gray foreground)? This allows you to copy the value to the clipboard.
View ArticleNew Post: PropertyName in Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem
Please, append property PropertyName in the class PropertyItem. I'm need this property in the ResolveEditor metod of my CustomEditor (inherited from ITypeEditor) for reading advanced custom...
View ArticleNew Post: PropertyGrid and RefreshProperties attribute
I don't know whether it's right or not, but I solved the problem this way: in class ObjectContainerHelperBase I added two metods: private bool HasRefreshPropertiesAttribute(PropertyItem propertyItem) {...
View ArticleNew Post: AvalonDock
How do I bind to the IconSource property in the LayourAnchorable control? I get an error message that "A binding can only be set on a dependency property of a dependency object" so I attempted to set...
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
Hi, In v2.5, the custome editor won't be override with a TextBlock when readOnly. Same issue has https://wpftoolkit.codeplex.com/workitem/21089 and https://wpftoolkit.codeplex.com/workitem/21421.
View ArticleNew Post: PropertyName in Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem
Hi, You can use propertyItem.DisplayName.
View ArticleNew Post: PropertyName in Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem
Hi, No, I can't use DisplayName in this:System.Reflection.PropertyInfo prop = valueType.GetProperty(propertyItem.PropertyName); because my property has a DisplayNameAttribute, that not equals...
View ArticleNew Post: PropertyName in Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem
Issue https://wpftoolkit.codeplex.com/workitem/21639 has been created.
View ArticleNew Post: DateTimePicker
Hello! Is there any way to hide the dropdown (ComboBox) arrow of DateTimePicker? This is useful when the control is read only. Thanks
View ArticleNew Post: DateTimePicker
Hi, In v2.6, you will have access to a new property : ShowDropDownButton. It will hide/show the dropDownButton of the TimePicker and DateTimePicker.
View Article