Click here to Skip to main content
15,880,469 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I could not find relevant info on Google, probably due to poor english translation... :-(

I made a "custom" panel derived from 'Panel'.
Added a extra "Position" property. The allowable values are defined in a enum.

What do i have to do to have the possible values displayed in the VS dropdown combo ?

I mean : i would like to be able to select one of the allowable Position values from a dropdown combo, in the visual studio property window

Thanks for your help,
Eddy.

CSS
class PanneauRond : Panel
{
    private Position IDPosition = Position.UpperLeft;

.
.
.
XML
public enum Position
        {
            UpperLeft = 0,
            UpperRight = 1,
            LowerLeft = 2,
            LowerRight = 3

        }
public Position PanelIDPosition
{
    get { return IDPosition; }
    set { IDPosition = value; }
}
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900