Beispiel #1
0
        public DComboBox(int xpos, int ypos) : base(xpos, ypos, 60, 70)
        {
            numOfThisType++;

            if (!this.SetVarName(type + numOfThisType.ToString()))
            {
                while (!this.SetVarName(type + numOfThisType.ToString() + Derma.RandomString(4, false)))
                {
                    continue;
                }
            }
        }
Beispiel #2
0
        public DSysButton(int xpos, int ypos) : base(xpos, ypos, 25, 25)
        {
            numOfThisType++;

            if (!this.SetVarName(type + numOfThisType.ToString()))
            {
                while (!this.SetVarName(type + numOfThisType.ToString() + Derma.RandomString(4, false)))
                {
                    continue;
                }
            }
        }
Beispiel #3
0
        public DNumPad(int xpos, int ypos) : base(xpos, ypos, 76, 92)
        {
            numOfThisType++;
            //this.sizeable = false;

            if (!this.SetVarName("Dnumpad" + numOfThisType.ToString()))
            {
                while (!this.SetVarName("Dnumpad" + numOfThisType.ToString() + Derma.RandomString(4, false)))
                {
                    continue;
                }
            }
        }
Beispiel #4
0
        public DMultiChoice(int xpos, int ypos) : base(xpos, ypos, 50, 21)
        {
            numOfThisType++;

            this.initialselectnum = 1;

            if (!this.SetVarName(type + numOfThisType.ToString()))
            {
                while (!this.SetVarName(type + numOfThisType.ToString() + Derma.RandomString(4, false)))
                {
                    continue;
                }
            }
        }