New Post: PropertyGrid Readonly and Font Color
Hello, when I set the Property IsReadOnly="True" on PropertyGrid (v2.5), all the fields are greyed out (like IsEnabled="False"). Is there any way to show the user the properties with a black font...
View ArticleNew Post: PropertyGrid Readonly and Font Color
Hi, This is the default behavior. When PropertyGrid.IsReadOnly is set to True, all the PropertyItems Editor's IsEnabled property are set to false. If you use a CheckBox or textBox, when IsEnabled =...
View ArticleNew Post: IntegerUpDown behavior changed
Hi, Starting at v2.5, a new Property is available on UpDownBase : UpdateValueOnEnterKey. In NumericUpDowns, DateTimeUpDown, DateTimePicker, TimePicker, TimeSpanUpDown, a new boolean property was added:...
View ArticleNew Post: Close drop down button programatically
I have a custom control as the content of the drop down button. In the custom control, I have a button that will show a new window. I want the drop down button to close when the new window is shown....
View ArticleNew Post: Why modifying an expandable object doesn't not refresh the content...
I also need this functionality. It seems clear to me that an unexpanded object should definitely describe it's current state (and not it's initial state) otherwise the user looking at an unexpanded...
View ArticleNew Post: Create an editor for property grid in one project and add refrence...
I am having a similar problem. eranop1 did you ever find out what was wrong?
View ArticleNew Post: Create an editor for property grid in one project and add refrence...
Ok Guys, I have found out why my editor was not being used and maybe this might help someone else who is also suffering from this problem. In my case I had 3 assemblies: Assembly A : a C# library...
View ArticleNew Post: Why modifying an expandable object doesn't not refresh the content...
Here is my version which does not use binding but instead will use the INotifyPropertyChanged interface of the object being displayed in the property grid to keep the ToString display updated.public...
View ArticleNew Post: PropertyGrid Readonly and Font Color
Interestingly the v2_2 was different and string-Properties were shown in black color. That's what I wanted when I used the PropertyGrid as "ReadOnly". Maybe it is a philosophical question how it should...
View ArticleNew Post: PropertyGrid - manage/define subproperties of expanded property
Hi, I am using the (glorious) PropertyGrid with AutoGenerateProperties set to false. Each time I change the SelectedObject, I also change the PropertyDefinitions accordingly. This works great so far,...
View ArticleNew Post: PropertyGrid - manage/define subproperties of expanded property
Hi, I am using the (glorious) PropertyGrid with AutoGenerateProperties set to false. Each time I change the SelectedObject, I also change the PropertyDefinitions accordingly. This works great so far,...
View ArticleNew Post: Close drop down button programatically
Hi, A solution mught be to derive from DropDownButton and override method OnIsKeyboardFocusWithinChanged. If False is received, just close the dropDownButton with IsOpen = false.
View ArticleNew Post: Why modifying an expandable object doesn't not refresh the content...
Issue https://wpftoolkit.codeplex.com/workitem/21685 has been created.
View ArticleNew Post: PropertyGrid - manage/define subproperties of expanded property
Issue https://wpftoolkit.codeplex.com/workitem/21686 has been created.
View ArticleNew Post: MessageBox with CheckBox
I need this feature as well, so I've created a derived MessageBox class with a custom template and dependency property. I can display it like so:var msgbox = new CheckableMessageBox ();...
View ArticleNew Post: PropertyGrid - manage/define subproperties of expanded property
Hi BoucherS, thanks a lot.
View ArticleNew Post: MessageBox with CheckBox
Hi, If you look at MessageBox.OnApplyTemplate() method, there is a call to "ChangeVisualState( _button.ToString(), true );". This will set the VisualState to use (to good sets of buttons). In XAML, the...
View ArticleNew Post: MessageBox with CheckBox
Thanks for the tip BoucherS. I tried to call ChangeVisualState(...) in my derived class but it doesn't change the buttons (Tried in version 2.2). What does work is calling InitializeMessageBox(...)...
View ArticleNew Post: CheckComboBox
Hi I'm using the CheckComboBox from this framework in my project and it works fine in VS 2010. However when outside of VS the program crashes. Before i manage to get it work by adding using...
View ArticleNew Post: CustomPropertyItems and Custom Editors
Hello, I am trying to have a PropertyGrid with PropertiesSource set to a Collection of CustomPropertyItem's. I cannot get the definition of a custom editor working. I have a little application to show...
View Article