public TimeAdvanceToolStripButton(IImageResources imageResources, ISimulatedClock simulatedClock)
            : base(new System.Windows.Forms.ToolStripButton())
        {
            this.simulatedClock = simulatedClock;
            InitializeComponent();
            Image = imageResources.GetImage("ExpirationHS.png");
            DisplayStyle = ToolStripItemDisplayStyle.Image;
            Visible = true;
            Enabled = true;
            Size = new Size(23, 22);
            ToolTipText = "Advance time by 30 seconds";

            Click += TimeAdvanceToolStripButton_Click;
        }
        public TimeAdvanceToolStripButton(IImageResources imageResources, ISimulatedClock simulatedClock)
            : base(new System.Windows.Forms.ToolStripButton())
        {
            this.simulatedClock = simulatedClock;
            InitializeComponent();
            Image        = imageResources.GetImage("ExpirationHS.png");
            DisplayStyle = ToolStripItemDisplayStyle.Image;
            Visible      = true;
            Enabled      = true;
            Size         = new Size(23, 22);
            ToolTipText  = "Advance time by 30 seconds";

            Click += TimeAdvanceToolStripButton_Click;
        }