Adding a usercontrol's property in the property window

  • Thread starter Thread starter Zyrthofar Blackcloak
  • Start date Start date
Z

Zyrthofar Blackcloak

Hi

I have created a control with 3 properties (TextDiff, DarkColorDiff
and LightColorDiff). When I use that control in a program, I would
like those properties to show up in the property window with all the
other properties for that control.

How could I do that? I had hoped that declaring them as properties
would work, but that doesn't seem to be the case...

thanks
 
* Zyrthofar Blackcloak said:
I have created a control with 3 properties (TextDiff, DarkColorDiff
and LightColorDiff). When I use that control in a program, I would
like those properties to show up in the property window with all the
other properties for that control.

\\\
Imports System.ComponentModel
..
..
..
<Browsable()> _
Public Property...
...
End Property
///
 
Back
Top