New Post: Put PropertyGrid attributes/interfaces into separate assembly
Unless I'm mistaken about what you're talking about here, it's actually reasonably easy to inject/remove/manipulate attributes in an object you're putting in to a PropertyGrid. You need to make an...
View ArticleNew Post: Put PropertyGrid attributes/interfaces into separate assembly
Nope, That's not what I'm talking about. I'm talking about attributes that WPFToolKit provide to provide generic functionality for item sources etc, and placing those attributes in their own assembly...
View ArticleNew Post: cannot access internal constructor 'PropertyItem' here
I'm trying to dynamically add property items to a PropertyGrid. It produces this error and I can't get the app to compile. In the previous MS version of the toolkit this was possible. How do we go...
View ArticleNew Post: Put PropertyGrid attributes/interfaces into separate assembly
Vote for the following work item if it correspond to your need:http://wpftoolkit.codeplex.com/discussions/403349
View ArticleNew Post: PropertyGrid - Programmatically registering a custom editor
You cannot use the ITypeEditor inside your EditorDefinition. When using the EditorDefinition approach, you must put your UI inside your template. ex:<xctk:EditorDefinition.EditorTemplate>...
View ArticleNew Post: cannot access internal constructor 'PropertyItem' here
Can you specify the version of the toolkit you were using when your scenario was working (ie. 1.7, 1.8 )? Can you provide a sample app that reproduce the problem ? Create an Issue and attach your...
View ArticleNew Post: PropertyGrid - Programmatically registering a custom editor
OK thanks - I'll give that a go
View ArticleNew Post: PropertyGrid - Programmatically registering a custom editor
Seems to work well! One question though - if I define a custom editor in the XAML, and I have a button that triggers a dialogue allowing me to select a new property for the object (or component of the...
View ArticleNew Post: PropertyGrid - Programmatically registering a custom editor
Ah nevermind, I can get the PropertyItem from the PropertyGrid :)
View ArticleNew Post: Put PropertyGrid attributes/interfaces into separate assembly
The link of my previous reply has been corrected. Please vote for the above work item
View ArticleNew Post: CheckComboBox with MVVM
Hi BoucherS, Thanks for showing interest in my post. Actually I have a tabcontrol which has say 2 tabs. I have a list of objects "X" on tab 1. I m using CheckComboBox in the 2nd tab. I am binding...
View ArticleNew Post: CheckComboBox with MVVM
Maybe the following link could help you ;http://stackoverflow.com/questions/1861475/marshal-struct-problem-with-c-sharp I made a simple sample to test the "Clear" of the CheckComboBox.ItemsSource....
View ArticleNew Post: PropertyGrid ComboBox and Office themes
Is there a problem with the ComboBoxItem template/style, or is it me? I find that, with a custom ItemsSource and one of the Office 2007 themes (BureauBlue), that the items in the combo don't get...
View ArticleNew Post: PropertyGrid ComboBox and Office themes
The behavior on my side was working properly by modifying the "CustomItemsSource.xaml" file from the "Providing an ItemsSource" sample:<sample:DemoView...
View ArticleNew Post: DateTimeUpDown Custom Format
Hi, I have the following code. public static string DateOnly(DateTimePicker dtp) { DateTimePicker myDTP = new DateTimePicker(); myDTP.Format = DateTimeFormat.Custom; myDTP.FormatString = "yyyy-MM-dd";...
View ArticleNew Post: DateTimeUpDown Custom Format
You seems to use the DateTimePicker to "format" data. You should use standard data API to acheive your need:DateTime myTime = dtp.Value; return myTime.ToString("yyyy-MM-dd"); But if that was not the...
View ArticleNew Post: DateTimeUpDown Custom Format
DateTime dt = (DateTime)dtp.Value; return dt.ToString("yyyy-MM-dd"); worked. Also thank you for including alternative as it will come in handy.
View ArticleNew Post: Zoombox and mouse point
Hello, how I can get the mouse coordinates of the embedded image in the zoombox? Thank you for the answer!
View ArticleNew Post: Tab Stop not working on multiple controls
Hi, I have recently instaled WPF Extended Toolkit and and tried to create simple WPF form, using VS 2012 an C#. It has few numeric up down boxes and button. The problem is that IsTabStop property...
View ArticleNew Post: PropertyGrid ComboBox and Office themes
Thanks for your prompt reply. Unfortunately I am using the freeware 'community' edition, and so don't seem to have access to the required DLL in order to use the resource dictionary in that way. The...
View Article