public void add_label(string text, Color?fc = null, fonts f = fonts.normale, int?ss = null) { if (_labels == null) { _labels = new List <footer_label>(); } _labels.Add(new footer_label(text, fc, f, ss)); if (_t == null) { _t = new Timer(); _t.Interval = 1000; _t.Tick += _t_Tick; refresh(); _t.Start(); } }
public void set_label(string text, Color?fc = null, fonts f = fonts.normale) { set_labels(new footer_label[] { new footer_label(text, fc, f) }); }
public footer_label(string text, Color?fc = null, fonts f = fonts.normale, int?ss = null, pos p = pos.right) { this.text = text; this.fc = fc.HasValue ? fc.Value : Color.DimGray; this.f = f; this.ss = ss.HasValue ? ss.Value : 5; this.start = null; this.position = p; }