Ignore:
Timestamp:
Jan 16, 2011, 5:32:40 AM (13 years ago)
Author:
Sam Habiel
Message:

CalendarGrid: Add MouseEnter event: puts focus on calendar grid. Used to "steal" focus from other controls so that lose focus events would fire.
CGDocumentManager: Added application-wide error handler on Application error exception; Added load timer to test how long it takes to load the GUI.
CGDocument: Just documentation updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CalendarGrid.cs

    r1038 r1065  
    8888            this.m_sfHour.Alignment = StringAlignment.Far;
    8989            this.m_bInitialUpdate = false;
     90            this.MouseEnter += new EventHandler(CalendarGrid_MouseEnter);
     91        }
     92
     93        void CalendarGrid_MouseEnter(object sender, EventArgs e)
     94        {
     95            this.Focus();
    9096        }
    9197
Note: See TracChangeset for help on using the changeset viewer.