public static SItem NewSItem(string Str, SItem Next) { SItem Item = new SItem(); Item.Value = Str; Item.Next = Next; return(Item); }
public Cluster(Rect Bounds, SItem AStrings) : base(Bounds) { Options |= OptionFlags.ofSelectable | OptionFlags.ofFirstClick | OptionFlags.ofPreProcess | OptionFlags.ofPostProcess | OptionFlags.ofVersion20; int I = 0; SItem P = AStrings; while (P != null) { I++; P = P.Next; } Strings = new StringCollection(); while (AStrings != null) { P = AStrings; Strings.Add(AStrings.Value); AStrings = AStrings.Next; } Value = 0; Sel = 0; SetCursor(2, 0); ShowCursor(); EnableMask = 0xFFFFFFFF; }
public RadioButtons(Rect Bounds, SItem AStrings) : base(Bounds, AStrings) { }
public CheckBoxes(Rect Bounds, SItem AStrings) : base(Bounds, AStrings) { }