Ejemplo n.º 1
0
 public DateTimePicker()
 {
     //Debug.WriteLine("Dameer");
     this.Initializ();
     this._blockManager = new BlockManager(this, this.FormatString);
 }
Ejemplo n.º 2
0
 public Block(BlockManager blockManager, string pattern, int index)
 {
     //Debug.WriteLine("Block");
     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);
 }