Property page?

cheng_sh

Freshman
Joined
Feb 18, 2003
Messages
25
Location
KL
In vb 6, when I create user control, I can add in property page for it. How to do that in VB.NET if I create a user control in .NET?
Please advise.
 
I don't think there are Property Pages as such - .NET offers far better support with the integrated property grid. You can make a property which brings up a modal configuration dialog when clicked using the UITypeEditor class, or you can add a designer verb which invokes a similar dialog.
 
Back
Top