Changeset 11423 for lang/csharp
- Timestamp:
- 05/12/08 03:58:28 (6 months ago)
- Files:
-
- 1 modified
-
lang/csharp/MMMMB/MMMMB/MiniBlogView.cs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/csharp/MMMMB/MMMMB/MiniBlogView.cs
r11290 r11423 125 125 } 126 126 if (before == entryList.Count) return; // �ω��������ꍇ�͔����� 127 // �`�� string html = GenerateHtml(); 128 this.Invoke(new MethodInvoker(delegate() 129 { 130 browser.DocumentText = html; 131 })); 127 // �`�� Redraw(); 132 128 133 129 // �ʒm … … 177 173 } 178 174 175 private void Redraw() 176 { 177 string html = GenerateHtml(); 178 this.Invoke(new MethodInvoker(delegate() 179 { 180 if (browser.DocumentText != html) 181 { 182 browser.DocumentText = html; 183 } 184 })); 185 } 186 179 187 public void NameClick(string permalink) 180 188 { … … 280 288 { 281 289 filterPanel.Height = (filterCheck.Checked) ? 102 : 25; 290 (new Thread(delegate() 291 { 292 try 293 { 294 Redraw(); 295 } 296 finally 297 { 298 } 299 })).Start(); 282 300 } 283 301 … … 299 317 try 300 318 { 301 this.Invoke(new MethodInvoker(delegate() 302 { 303 browser.DocumentText = GenerateHtml(); 304 })); 319 Redraw(); 305 320 } 306 321 finally
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)