1 write to upDownEdit
System.Windows.Forms (1)
winforms\Managed\System\WinForms\UpDownBase.cs (1)
93upDownEdit = new UpDownEdit(this);
29 references to upDownEdit
System.Windows.Forms (29)
winforms\Managed\System\WinForms\UpDownBase.cs (29)
94upDownEdit.BorderStyle = BorderStyle.None; 95upDownEdit.AutoSize = false; 96upDownEdit.KeyDown += new KeyEventHandler(this.OnTextBoxKeyDown); 97upDownEdit.KeyPress += new KeyPressEventHandler(this.OnTextBoxKeyPress); 98upDownEdit.TextChanged += new EventHandler(this.OnTextBoxTextChanged); 99upDownEdit.LostFocus += new EventHandler(this.OnTextBoxLostFocus); 100upDownEdit.Resize += new EventHandler(this.OnTextBoxResize); 105Controls.AddRange(new Control[] { upDownButtons, upDownEdit} ); 208return upDownEdit.BackColor; 212upDownEdit.BackColor = value; 328this.upDownEdit.ContextMenu = value; 338this.upDownEdit.ContextMenuStrip = value; 407return upDownEdit.Focused; 420return upDownEdit.ForeColor; 424upDownEdit.ForeColor = value; 565return upDownEdit.ReadOnly; 569upDownEdit.ReadOnly = value; 585return upDownEdit.Text; 589upDownEdit.Text = value; 625return upDownEdit.TextAlign; 633upDownEdit.TextAlign = value; 639return upDownEdit; 802Rectangle editBounds = upDownEdit.Bounds; 850if (!Enabled && BorderStyle != BorderStyle.None && !upDownEdit.ShouldSerializeBackColor()) { 1105if (upDownEdit != null) { 1135if (upDownEdit != null) { 1136upDownEdit.Bounds = upDownEditBounds; 1153upDownEdit.Select(start, length); 1245toolTip.SetToolTip(this.upDownEdit , caption);