public FrmTileCoverter()
 {
     log = log4net.LogManager.GetLogger(this.GetType());
     InitializeComponent();
     this.OnProcessNotifyCoverte += new ProcessNotifyHandler(this.CoverteMsg);
     if (this.cmbType.Items.Count > 0)
     {
         this.cmbType.SelectedIndex = 0;
     }
 }
Beispiel #2
0
 public FrmChnCharInfo()
 {
     this.InitializeComponent();
     this.OnProcessNotify += new ProcessNotifyHandler(this.ShowMsg);
     log          = LogManager.GetLogger(this.GetType());
     this.Closed += (sender, obj) =>
     {
         if (this.dbcon != null)
         {
             this.dbcon.Dispose();
         }
     };
     this.txbDataBase.Text = "routing";
 }
Beispiel #3
0
 public FrmMain()
 {
     InitializeComponent();
     this.OnProcessNotify += new ProcessNotifyHandler(this.ShowMsg);
     this.OnLog           += new LogHandler(this.WriteLog);
 }
Beispiel #4
0
 public MainForm()
 {
     InitializeComponent();
     this.OnProcessNotify += new ProcessNotifyHandler(this.ShowMsg);
 }