- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.Designer.cs
r3764 r5287 143 143 // screenshotButton 144 144 // 145 this.screenshotButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Image;145 this.screenshotButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Image; 146 146 this.screenshotButton.Location = new System.Drawing.Point(243, 3); 147 147 this.screenshotButton.Name = "screenshotButton"; … … 154 154 // zoomOutButton 155 155 // 156 this.zoomOutButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.ZoomOut;156 this.zoomOutButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomOut; 157 157 this.zoomOutButton.Location = new System.Drawing.Point(213, 3); 158 158 this.zoomOutButton.Name = "zoomOutButton"; … … 165 165 // zoomInButton 166 166 // 167 this.zoomInButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.ZoomIn;167 this.zoomInButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomIn; 168 168 this.zoomInButton.Location = new System.Drawing.Point(183, 3); 169 169 this.zoomInButton.Name = "zoomInButton"; … … 176 176 // zoomAreaButton 177 177 // 178 this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.ActualSize;178 this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ActualSize; 179 179 this.zoomToFitButton.Location = new System.Drawing.Point(153, 3); 180 180 this.zoomToFitButton.Name = "zoomAreaButton"; … … 187 187 // relayoutButton 188 188 // 189 this.relayoutButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.RefreshDocument;189 this.relayoutButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.RefreshDocument; 190 190 this.relayoutButton.Location = new System.Drawing.Point(123, 3); 191 191 this.relayoutButton.Name = "relayoutButton"; … … 198 198 // connectButton 199 199 // 200 this.connectButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Interface;200 this.connectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Interface; 201 201 this.connectButton.Location = new System.Drawing.Point(63, 3); 202 202 this.connectButton.Name = "connectButton"; … … 209 209 // panButton 210 210 // 211 this.panButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Breakpoint;211 this.panButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Breakpoint; 212 212 this.panButton.Location = new System.Drawing.Point(33, 3); 213 213 this.panButton.Name = "panButton"; … … 220 220 // selectButton 221 221 // 222 this.selectButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Pointer;222 this.selectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pointer; 223 223 this.selectButton.Location = new System.Drawing.Point(3, 3); 224 224 this.selectButton.Name = "selectButton"; -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs
r4068 r5287 195 195 this.Children.Add(iconMaterial); 196 196 197 Bitmap expandBitmap = new Bitmap(HeuristicLab.Common.Resources.VS 2008ImageLibrary.Expand);198 Bitmap collapseBitmap = new Bitmap(HeuristicLab.Common.Resources.VS 2008ImageLibrary.Collapse);197 Bitmap expandBitmap = new Bitmap(HeuristicLab.Common.Resources.VSImageLibrary.Expand); 198 Bitmap collapseBitmap = new Bitmap(HeuristicLab.Common.Resources.VSImageLibrary.Collapse); 199 199 this.expandIconMaterial = new ExpandableIconMaterial(expandBitmap, collapseBitmap); 200 200 this.expandIconMaterial.Gliding = false;
Note: See TracChangeset
for help on using the changeset viewer.