1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls
- {
- public class NodeTitle : ComponentLibrary.LabelEx
- {
- public NodeTitle(string text = "空")
- {
- this.BackColor = System.Drawing.Color.Transparent;
- this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ForeColor = System.Drawing.Color.DodgerBlue;
- this.Size = new System.Drawing.Size(164, 40);
- this.Text = text;
- this.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
- }
- }
- }
|