My.Settings PropertyGrid Tabs?

  • Thread starter Thread starter swartzbill2000
  • Start date Start date
S

swartzbill2000

Hello,
I am using a PropertyGrid to show and update My.Settings members. I
want to partition the My.Settings members into subgroups, and show each
subgroup in a Tab in the PropertyGrid. How do I do it?
Bill
 
Bill:

The following articles may be good references, depending on your needs.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/vsnetpropbrow.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/usingpropgrid.asp

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Hello,
I am using a PropertyGrid to show and update My.Settings members. I
want to partition the My.Settings members into subgroups, and show each
subgroup in a Tab in the PropertyGrid. How do I do it?
Bill
 
David,
I have seen both the references, and I am working my way through them.
Both articles connect a PropertyGrid (using .SelectedObject) to an
instance of a developer-defined class. I want to connect a PropertyGrid
to My.Settings. This I can do. Both references apply attributes to the
developer-defined class. My problem is that I don't know how to apply
these attributes to My.Settings. My best guess now is to define a class
that initializes from My.Settings and writes back to My.Settings right
before app termination. Any other ideas?
Bill
 
Back
Top