Changeset 83
- Timestamp:
- 07/24/06 18:03:42 (2 years ago)
- Files:
-
- trunk/MacFaceFloat/StatusWindow.cs (modified) (6 diffs)
- trunk/MacFaceFloat/StatusWindow.resx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MacFaceFloat/StatusWindow.cs
r69 r83 92 92 if (count >= 2) 93 93 { 94 int bw = fw/ 60;94 int bw = (fw + (60-1)) / 60; 95 95 Point[] userGraph = new Point[count+2]; 96 96 Point[] sysGraph = new Point[count+2]; … … 149 149 150 150 int count = memStats.Count; 151 int bw = fw/ 60;151 int bw = (fw + (60-1)) / 60; 152 152 153 153 for (int i = 0; i < count; i++) … … 218 218 | System.Windows.Forms.AnchorStyles.Right))); 219 219 this.memoryGraphPicBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 220 this.memoryGraphPicBox.Location = new System.Drawing.Point( 8, 8);220 this.memoryGraphPicBox.Location = new System.Drawing.Point(7, 8); 221 221 this.memoryGraphPicBox.Name = "memoryGraphPicBox"; 222 this.memoryGraphPicBox.Size = new System.Drawing.Size( 296, 104);222 this.memoryGraphPicBox.Size = new System.Drawing.Size(300, 100); 223 223 this.memoryGraphPicBox.TabIndex = 0; 224 224 this.memoryGraphPicBox.TabStop = false; … … 229 229 | System.Windows.Forms.AnchorStyles.Right))); 230 230 this.cpuGraphPicBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 231 this.cpuGraphPicBox.Location = new System.Drawing.Point( 8, 120);231 this.cpuGraphPicBox.Location = new System.Drawing.Point(7, 116); 232 232 this.cpuGraphPicBox.Name = "cpuGraphPicBox"; 233 this.cpuGraphPicBox.Size = new System.Drawing.Size( 296, 104);233 this.cpuGraphPicBox.Size = new System.Drawing.Size(300, 100); 234 234 this.cpuGraphPicBox.TabIndex = 1; 235 235 this.cpuGraphPicBox.TabStop = false; … … 238 238 // 239 239 this.AutoScaleBaseSize = new System.Drawing.Size(5, 12); 240 this.ClientSize = new System.Drawing.Size(314, 2 32);240 this.ClientSize = new System.Drawing.Size(314, 223); 241 241 this.Controls.Add(this.cpuGraphPicBox); 242 242 this.Controls.Add(this.memoryGraphPicBox); … … 244 244 this.MaximizeBox = false; 245 245 this.MinimizeBox = false; 246 this.MinimumSize = new System.Drawing.Size(322, 2 61);246 this.MinimumSize = new System.Drawing.Size(322, 250); 247 247 this.Name = "StatusWindow"; 248 248 this.Text = "�X�e�[�^�X"; trunk/MacFaceFloat/StatusWindow.resx
r69 r83 110 110 <value>False</value> 111 111 </data> 112 <data name="cpuGraphPicBox.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 113 <value>Private</value> 114 </data> 112 115 <data name="cpuGraphPicBox.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 113 116 <value>Assembly</value> 114 </data>115 <data name="cpuGraphPicBox.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">116 <value>Private</value>117 117 </data> 118 118 <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
