Esempio n. 1
0
 public LogUI(string title)
 {
     InitializeComponent();
     this.Text  = title;
     this.job   = null;
     this.Style = MetroFramework.MetroColorStyle.Black;
 }
Esempio n. 2
0
 public LogUI(string title)
 {
     InitializeComponent ();
     this.Text = title;
     this.job = null;
     this.Style = MetroFramework.MetroColorStyle.Black;
 }
Esempio n. 3
0
 public LogUI(ILoggableJob job)
 {
     this.job = job;
     InitializeComponent();
     this.Text     = job.Name;
     job.Log      += OnLog;
     job.Done     += OnDone;
     btnClose.Text = "Cancel";
     this.Style    = MetroFramework.MetroColorStyle.Black;
 }
Esempio n. 4
0
 public LogUI(ILoggableJob job)
 {
     this.job = job;
     InitializeComponent ();
     this.Text = job.Name;
     job.Log += OnLog;
     job.Done += OnDone;
     btnClose.Text = "Cancel";
     this.Style = MetroFramework.MetroColorStyle.Black;
 }
Esempio n. 5
0
 public AsyncLoggableJob(ILoggableJob job)
 {
     this.job = job;
 }
Esempio n. 6
0
 public AsyncLoggableJob(ILoggableJob job)
 {
     this.job = job;
 }