using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls { public class VerticalLine : ComponentLibrary.PanelEx { public VerticalLine() { this.BackColor = System.Drawing.Color.DodgerBlue; this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209))))); this.BorderType = LYFZ.ComponentLibrary.PlBorderType.all; this.BorderWidth = 1; this.Size = new System.Drawing.Size(3, 300); } } }