Click here to Skip to main content
15,908,675 members
Home / Discussions / C#
   

C#

 
GeneralRemoting Pin
Jon Newman2-May-03 1:53
Jon Newman2-May-03 1:53 
GeneralOpen an "About" window.... Pin
eggie51-May-03 18:30
eggie51-May-03 18:30 
GeneralRe: Open an "About" window.... Pin
draco_iii1-May-03 23:36
draco_iii1-May-03 23:36 
GeneralRe: Open an "About" window.... Pin
eggie52-May-03 12:25
eggie52-May-03 12:25 
GeneralGet access to main form from child form Pin
paulb1-May-03 14:04
paulb1-May-03 14:04 
GeneralRe: Get access to main form from child form Pin
Nathan Blomquist1-May-03 17:45
Nathan Blomquist1-May-03 17:45 
GeneralComponent Authoring Pin
draco_iii1-May-03 11:15
draco_iii1-May-03 11:15 
GeneralRe: Component Authoring Pin
James T. Johnson1-May-03 18:09
James T. Johnson1-May-03 18:09 
draco_iii wrote:
I want these in a listbox on the property pages. I have hunted for a way to do this, but I have been unable to find anything remotely close to the subject.

All you should have to do is make sure your property is defined as an Enum then the property grid will take it from there.

class MyClass
{
  public enum Sides
  {
    Top, Bottom, Left, Right
  }

  private Sides sides;
  
  ....
 
  [Browsable(true)]
  public Sides Sides
  {
    get
    {
      return sides;
    }
    set
    {
       sides = value;
    }
  }
 
  ...
}
Maybe I just didn't understand the question, because it sounds like you have something similar to this already.

James

"It is self repeating, of unknown pattern"
Data - Star Trek: The Next Generation

GeneralRe: Component Authoring Pin
draco_iii1-May-03 23:25
draco_iii1-May-03 23:25 
Generalcustomized listbox Pin
jimmy.br1-May-03 9:23
jimmy.br1-May-03 9:23 
GeneralZipping Files Pin
DFU231-May-03 9:09
DFU231-May-03 9:09 
GeneralRe: Zipping Files Pin
Nathan Blomquist1-May-03 9:45
Nathan Blomquist1-May-03 9:45 
GeneralRe: Zipping Files Pin
J. Dunlap1-May-03 9:50
J. Dunlap1-May-03 9:50 
GeneralRe: Zipping Files Pin
Nathan Blomquist1-May-03 11:52
Nathan Blomquist1-May-03 11:52 
GeneralListbox with hidden id Pin
viana1-May-03 6:45
viana1-May-03 6:45 
GeneralRe: Listbox with hidden id Pin
James T. Johnson1-May-03 18:20
James T. Johnson1-May-03 18:20 
GeneralRe: Listbox with hidden id Pin
viana2-May-03 1:32
viana2-May-03 1:32 
GeneralRe: Listbox with hidden id Pin
James T. Johnson2-May-03 1:34
James T. Johnson2-May-03 1:34 
GeneralRe: Listbox with hidden id Pin
viana2-May-03 1:36
viana2-May-03 1:36 
GeneralRe: Listbox with hidden id Pin
James T. Johnson2-May-03 1:41
James T. Johnson2-May-03 1:41 
GeneralForm Load Issues Pin
RB@Emphasys1-May-03 6:13
RB@Emphasys1-May-03 6:13 
GeneralRe: Form Load Issues Pin
J. Dunlap1-May-03 6:53
J. Dunlap1-May-03 6:53 
GeneralRe: Form Load Issues Pin
RB@Emphasys1-May-03 7:29
RB@Emphasys1-May-03 7:29 
GeneralPlease Help Pin
Scoop1-May-03 3:50
Scoop1-May-03 3:50 
GeneralRe: Please Help Pin
Stephane Rodriguez.1-May-03 4:17
Stephane Rodriguez.1-May-03 4:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.