- Timestamp:
- 11/15/15 13:56:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/PackingPlanVisualizations/2D/PackingPlan2D.cs
r13032 r13161 62 62 private void InitializeRenderTarget() { 63 63 hwndProperties.Hwnd = this.Handle; 64 hwndProperties.PixelSize = new DrawingSize(this.Width, this.Height);64 hwndProperties.PixelSize = new Size2(this.Width, this.Height); 65 65 hwndProperties.PresentOptions = PresentOptions.None; 66 66 textFormat = new TextFormat(dwFactory, "arial", 14); … … 130 130 private void PackingPlan2D_Resize(object sender, EventArgs e) { 131 131 if (wndRender != null) 132 wndRender.Resize(new DrawingSize(this.Width, this.Height));132 wndRender.Resize(new Size2(this.Width, this.Height)); 133 133 //this.Refresh(); 134 134 }
Note: See TracChangeset
for help on using the changeset viewer.