Changeset 101

Show
Ignore:
Timestamp:
12/09/07 13:57:03 (1 year ago)
Author:
rryu
Message:

1秒経たないとステータスが表示されないのを修正した。

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/MacFaceFloat/MacFaceApp.cs

    r98 r101  
    121121                        } 
    122122 
    123                         updateTimer = new System.Windows.Forms.Timer(); 
     123            patternWindow = null; 
     124            statusWindow = null; 
     125 
     126            InitializeComponent(); 
     127 
     128            CountProcessorUsage(null, null); 
     129 
     130            updateTimer = new System.Windows.Forms.Timer(); 
    124131                        updateTimer.Enabled = false; 
    125132                        updateTimer.Interval = 1000; 
    126133                        updateTimer.Tick += new EventHandler(this.CountProcessorUsage); 
    127  
    128                         patternWindow = null; 
    129                         statusWindow = null; 
    130  
    131                         InitializeComponent(); 
    132134                } 
    133135