コード例 #1
0
 public HZ_Block(HZ_BlockManager blockManager, string pattern, int index)
 {
     //Debug.WriteLine("HZ_Block");
     this._blockManager = blockManager;
     this._blockManager.NeglectProposed += new EventHandler(_blockManager_NeglectProposed);
     this.Pattern    = pattern;
     this.Index      = index;
     this.Length     = this.Pattern.Length;
     this._maxLength = GetMaxLength(this.Pattern);
 }
コード例 #2
0
 public HZTimePicker()
 {
     this.Initializ();
     this._blockManager = new HZ_BlockManager(this, this.FormatString);
 }