Example #1
0
 public LogUI(string title)
 {
     InitializeComponent();
     this.Text  = title;
     this.job   = null;
     this.Style = MetroFramework.MetroColorStyle.Black;
 }
Example #2
0
 public LogUI(string title)
 {
     InitializeComponent ();
     this.Text = title;
     this.job = null;
     this.Style = MetroFramework.MetroColorStyle.Black;
 }
Example #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;
 }
Example #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;
 }
Example #5
0
 public AsyncLoggableJob(ILoggableJob job)
 {
     this.job = job;
 }
Example #6
0
 public AsyncLoggableJob(ILoggableJob job)
 {
     this.job = job;
 }