New Post: Assign an Enum to an object type property
Hi, I have an object type property and i dynamically assign a value of different types. It works for all types except for Enum. When i assign an Enum to my property and i assign my object to the...
View ArticleNew Post: TimeSpan Picker in Property Grid
I wanted to know if it will be possible at some time, that my Patch for the Propertygrid to include a TimeSpan Picker (wich allows a TimeSpan > than a Day) will be merged?
View ArticleNew Post: Property Grid - Adding Custom Properties.
In my application I have a WPF canvas and I drag and drop items on that canvas. I want to see the Left and Top position of a selected item in the canvas. I tried to add two new properties(Top, Left) to...
View ArticleNew Post: Assign an Enum to an object type property in a Propertygrid
Issue https://wpftoolkit.codeplex.com/workitem/20036 has been created.
View ArticleNew Post: Property Grid - Adding Custom Properties.
INotifyPropertyChanged may be help?
View ArticleNew Post: Property Grid - Adding Custom Properties.
Using the following code, I am able to change the "Left" and "Top" values in the PropertyGrid and see the CanvasItem being moved in the canvas.<Window x:Class="WpfApplication24.MainWindow"...
View ArticleNew Post: Assign an Enum to an object type property in a Propertygrid
Great it works fine! thx.
View ArticleNew Post: How can I change progress bar value in BusyIndicator?
After looking around and trying a few things, I finally found the solution here:http://stackoverflow.com/questions/12515710/problems-with-binding-data-to-data-templates-inside-a-busyindicator When...
View ArticleNew Post: BusyIndicator and Task not working
Hi, I've recently started using Task<T> instead of BackgroundWorker for my application. It seemed like the sensible thing to do at the time. However, I've noticed that the BusyIndicator doesn't...
View ArticleNew Post: Using DataGrid in Windows Store apps
Hi, I have to represent data in my Windows Store App in a tabular fashion. As there is not built-in DataGrid, I thought about using the toolkit's control. Is this possible?
View ArticleNew Post: Using PropertyGrid with EnumDescConverter
I have used the type converter class EnumDescClass from CodeProject to associate a descriptive text with some enum values. This is my enum definition:[TypeConverter(typeof(EnumDescConverter))] public...
View ArticleNew Post: BusyIndicator and Task not working
I was inadvertently blocking the UI thread, I didn't realise because the call to WaitAll which did the blocking occurred much later than the property notification for the IsBusy binding. I've fixed the...
View ArticleNew Post: Using DataGrid in Windows Store apps
Based on my understanding, I don't think the toolkit's dataGrid will work in the Windows Store App. From this link :...
View ArticleNew Post: Using PropertyGrid with EnumDescConverter
As a workaround, you can replace the line if( markupProperty != null ) with if( ( markupProperty != null ) && ( markupProperty.PropertyType != typeof( object ) ) &&...
View ArticleNew Post: Using PropertyGrid with EnumDescConverter
Excellent! Thank you very much for the quick reply. That fixes the problem for me. Best regards Phil
View ArticleNew Post: PropertyGrid ExpandableObject. How to make expanded by default?
How to make ExpandableObject property expanded by default? Is it possible? Also is it possible (using custom editors I think) to bind data from ExpandableObject to the expandable property itself. So...
View ArticleNew Post: Using DataGrid in Windows Store apps
Thank you for your answer, even if it won't work!
View ArticleNew Post: PropertyGrid ExpandableObject. How to make expanded by default?
1) ExpandableObject property expanded by default : Issue https://wpftoolkit.codeplex.com/workitem/20054 has been created. 2) Bind data from ExpandableObject to the expandable property itself : You can...
View ArticleNew Post: PropertyGrid ExpandableObject. How to make expanded by default?
ToString() works, but it doesn't updates ExpandleObject property text when I change corresponding properties. So if I change "Doe" to "Smith" it still remains John Doe in the ExpandableObject property.
View Article