VerticalLine.cs 635 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls
  6. {
  7. public class VerticalLine : ComponentLibrary.PanelEx
  8. {
  9. public VerticalLine()
  10. {
  11. this.BackColor = System.Drawing.Color.DodgerBlue;
  12. this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  13. this.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  14. this.BorderWidth = 1;
  15. this.Size = new System.Drawing.Size(3, 300);
  16. }
  17. }
  18. }