- Timestamp:
- 08/02/12 16:43:33 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Mono/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs
r7259 r8394 197 197 //mkommend: solution to resizing issues. taken from http://support.microsoft.com/kb/953934 198 198 //not implemented with a panel to reduce the number of nested controls 199 if (Handle != null) 199 //also cf. http://connect.microsoft.com/VisualStudio/feedback/details/98368/csc-incorrectly-allows-comparison-between-intptr-and-null 200 if (Handle != IntPtr.Zero) 200 201 this.BeginInvoke((Action<EventArgs>)OnSizeChangedHelper, e); 201 202 }
Note: See TracChangeset
for help on using the changeset viewer.