New Post: How do you use the themes?
I've downloaded the WPF Toolkit Plus, but cannot find any documentation regarding how to implement the theme support.
View ArticleEdited Issue: DateTimePicker.IsEnabled = false will not grey out text for...
__DateTimePicker.IsEnabled = false__Button and TextBox disable properly. Text stays black._Tested on Win7._Comments: ** Comment from web user: BoucherS ** This...
View ArticleNew Post: Custom WF Activity with a custom List object bound to...
Hello, This question needs someone familiar with the CollectionControl as well as Workflow. I'm building a WF Activity which simply executes a stored procedure. The Activity is associated with a WPF...
View ArticleNew Post: How do you use the themes?
Hi, The themes for windows8 or windows7 is applied by default, depending on your system. The themes MetroLight, MetroDark, Office2007 Blue, Office2007 Black and Office2007 Silver is only available in...
View ArticleNew Post: DateTimePicker and DateTimeUpDown with a Custom Format can cause a...
Hello, A System.InvalidOperationException can occurs in a DateTimePicker and a DateTimeUpDown control if the Format is set to « Custom ». Actually, the two controls cause the same error because...
View ArticleCommented Feature: Control Request: MediaElement MediaStreamSource [13917]
One of the strangest omissions in the WPF MediaElement is the ability to set a MediaStreamSource. http://msdn.microsoft.com/en-us/library/system.windows.media.mediastreamsource(VS.95).aspx The...
View ArticleCreated Unassigned: DateTimePicker and DateTimeUpDown with a Custom Format...
Based on discussion https://wpftoolkit.codeplex.com/discussions/567278
View ArticleNew Post: DateTimePicker and DateTimeUpDown with a Custom Format can cause a...
Issue https://wpftoolkit.codeplex.com/workitem/21299 has been created.
View ArticleEdited Issue: DateTimePicker and DateTimeUpDown with a Custom Format can...
Based on discussion https://wpftoolkit.codeplex.com/discussions/567278Comments: ** Comment from web user: BoucherS ** This issue will be fixed in v2.5.
View ArticleCommented Feature: Control Request: MediaElement MediaStreamSource [13917]
One of the strangest omissions in the WPF MediaElement is the ability to set a MediaStreamSource. http://msdn.microsoft.com/en-us/library/system.windows.media.mediastreamsource(VS.95).aspx The...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, I have the same issue I would like to add button for all editors in the property grid Is there any way to extend template of all the default editors without creating new editor for each default...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, Each default editor has its own template. When adding a button or label or any other UIElement, we need to know where to add it and what to add. So the simplest solution is to let the user define a...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, I am not sure, but it will be great, if we will be able to do like this: Define "EditorTemplateDefinition.ResolveEditor" to get editor control for the specified type For example for String type it...
View ArticleUpdated Wiki: PropertyGrid
PropertyGrid Derives from ControlThe PropertyGrid control allows you inspect and edit properties of an object. This PropertyGrid allows you to autogenerate all properties or specify the specific...
View ArticleNew Post: Tooltip display for Properties and SelectedObjectTypeName
Hi, Is there a way to enable tooltip when mouse-hover onto the Property Name column and the SelectedObjectTypeName displayed at the top of the PropertyGrid? Currently, if the Property Name is too long,...
View ArticleNew Post: PropertyGrid edit defaults editors
I also had the same problem. I wanted to extend the default editors without declaring a new templatedefinition for each editors. I came with this solution, it isn't pretty and not yet fully tested but...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi cpaulus, It looks amazing! The logic to get default editor is hidden in the internal class PropertyGridUtilities. It would be great to have facilities to get editor control by the value type from...
View ArticleNew Post: PropertyGrid edit defaults editors
Like this void RegisterControl(Binding binding, object val) { UIElement ctl = null; var type = val.GetType(); if (type == typeof(double)) { ctl = new DoubleUpDown(); BindingOperations.SetBinding(ctl,...
View ArticleCreated Feature: Tooltip display for Properties and SelectedObjectTypeName...
Based on discussion https://wpftoolkit.codeplex.com/discussions/567507
View ArticleEdited Feature: Tooltip display for Properties and SelectedObjectTypeName...
Based on discussion https://wpftoolkit.codeplex.com/discussions/567507
View Article