vote up 3 vote down star
1

Is there an easy way to wrap a "Preferences Panel" thing around the Settings.settings file (or any other settings file)?

Basically I have a bunch of strings stored in Settings.settings, and want to have a form where the user can edit these..

I could add a bunch of TextBoxes, and have a button that does Properties.blah = this.blahInput.Text; Properties.Save(); for each, but this feels like reinventing the wheel..

Edit: The PropertyGrid control (as suggested by bassfriend's) seems perfect, but I cannot work out how to bind the property grid's SelectedObject to Properties.Settings.Default - When I try I get the following error:

Cannot implicitly convert type 'MyProject.Properties.Settings' to 'object[]'
flag

2  
Re your edit - it sounds like you're accidentally using SelectedObjects. You have to use SelectedObject (singular). – Marc Gravell May 10 at 22:41
Good catch, Marc. – John Saunders May 10 at 22:49

3 Answers

vote up 5 vote down check

Maybe you want to take a look at the PropertyGrid Control.

link|flag
3  
For the record - there is also a WPF PropertyGrid over at CodePlex codeplex.com/wpg – Peter Lillevold May 10 at 22:55
vote up 0 vote down

Maybe you need to use the Settings.Default.Properties property? That returns SettingsPropertyCollection which should be convertable to an object[].

link|flag
Nah, I was trying to set "SelectedObjects", not the singular "SelectedObject".. – dbr May 10 at 22:59
vote up 1 vote down

I had no problem:

        propertyGrid1.SelectedObject = Properties.Settings.Default;

I did have to change the visibility to Public in the Settings Designer.

link|flag
Opps, I was trying to set "SelectedObjects", not "SelectedObject".. Thanks! – dbr May 10 at 22:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.