示例#1
0
 private Gui(PersistentStopwatch stopwatch)
 {
     this.currentStopwatch = stopwatch;
     this.InitContextMenuStrip();
     this.InitContextMenuStripButtons();
     this.InitTaskbarIcon();
 }
示例#2
0
        public Summary(PersistentStopwatch stopWatch)
        {
            InitializeComponent();

            this.stopWatch = stopWatch;

            this.Render();
        }
示例#3
0
 private static void InitStopwatchFromFile()
 {
     stopwatch = PersistentStopwatch.LoadFromFile();
 }
示例#4
0
 public static Gui GetForStopwatch(PersistentStopwatch stopwatch)
 {
     return(new Gui(stopwatch));
 }