NodeTitle.cs 736 B

1234567891011121314151617181920
  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 NodeTitle : ComponentLibrary.LabelEx
  8. {
  9. public NodeTitle(string text = "空")
  10. {
  11. this.BackColor = System.Drawing.Color.Transparent;
  12. this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  13. this.ForeColor = System.Drawing.Color.DodgerBlue;
  14. this.Size = new System.Drawing.Size(164, 40);
  15. this.Text = text;
  16. this.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  17. }
  18. }
  19. }