示例#1
0
 public override void OnApplyTemplate()
 {
     base.OnApplyTemplate();
     this.Initializ();
     this._blockManager = new BlockManager(this, this.FormatString);
 }
示例#2
0
 public Block(BlockManager blockManager, string pattern, int index)
 {
     this._blockManager = blockManager;
     this._blockManager.NeglectProposed += new EventHandler(_blockManager_NeglectProposed);
     this.Pattern = pattern;
     this.Index = index;
     this.Length = this.Pattern.Length;
     this._maxLength = this.GetMaxLength(this.Pattern);
 }
示例#3
0
 public override void OnApplyTemplate()
 {
     base.OnApplyTemplate();
     this.Initializ();
     this._blockManager = new BlockManager(this, this.FormatString);
 }