コード例 #1
0
ファイル: TTitle.cs プロジェクト: zhuzhenping/FreeOQ
 private void Init()
 {
     this.items        = new ArrayList();
     this.ItemsEnabled = false;
     this.Font         = new Font("Times New Roman", 8);
     this.Color        = Color.Black;
     this.Position     = ETitlePosition.Left;
     this.Strategy     = ETitleStrategy.Smart;
     this.X            = 0;
     this.Y            = 0;
 }
コード例 #2
0
ファイル: TTitle.cs プロジェクト: heber/FreeOQ
		private void Init()
		{
			this.items = new ArrayList();
			this.ItemsEnabled = false;
			this.Font = new Font("Times New Roman", 8);
			this.Color = Color.Black;
			this.Position = ETitlePosition.Left;
			this.Strategy = ETitleStrategy.Smart;
			this.X = 0;
			this.Y = 0;
		}
コード例 #3
0
 public TTitle(Pad pad, string text = "")
 {
     this.pad     = pad;
     Text         = Text;
     Items        = new ArrayList();
     ItemsEnabled = false;
     Font         = new Font("Arial", 8f);
     Color        = Color.Black;
     Position     = ETitlePosition.Left;
     Strategy     = ETitleStrategy.Smart;
     X            = 0;
     Y            = 0;
 }