Appearance Settings in Windows Forms Domain UpDown (DomainUpdownExt)
27 Apr 20211 minute to read
This section discusses the border styles and back color that can be applied for DomainUpDownExt control.
The below table lists the appearance properties of DomainUpDownExt control.
this.domainUpDownExt1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.domainUpDownExt1.Border3DStyle = System.Windows.Forms.Border3DStyle.Bump;
this.domainUpDownExt1.BorderSides = System.Windows.Forms.DomainUpdownExt_images.Right;
this.domainUpDownExt1.BorderColor = System.Drawing.Color.DodgerBlue;
this.domainUpDownExt1.BackColor = System.Drawing.Color.AntiqueWhite;
Me.domainUpDownExt1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.domainUpDownExt1.Border3DStyle = System.Windows.Forms.Border3DStyle.Bump
Me.domainUpDownExt1.BorderSides = System.Windows.Forms.DomainUpdownExt_images.Right
Me.domainUpDownExt1.BorderColor = System.Drawing.Color.DodgerBlue
Me.domainUpDownExt1.BackColor = System.Drawing.Color.AntiqueWhite