Ejemplo n.º 1
0
 public MyForm()
 {
     InitializeComponent();
     reader = new Reader();
     analysis = new Analysis(reader, this);
     refreshTimer = new System.Windows.Forms.Timer();
     refreshTimer.Tick += new EventHandler(NonFinishListButton_Click);
 }
Ejemplo n.º 2
0
 public Analysis(Reader reader, MyForm form)
 {
     this._form = form;
     this._reader = reader;
     msgPool =  new Dictionary<string, string>();
     DataPool = new Dictionary<string, DataGridViewRow>();
     logIOPool = new Dictionary<String, TextWriter>();
     objTmp = new Dictionary<TextBox, StringBuilder>();
 }