Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualizationView.Designer.cs @ 2833

Last change on this file since 2833 was 2819, checked in by mkommend, 15 years ago

new version of graph visualization with menuitems (ticket #867)

File size: 2.9 KB
Line 
1namespace HeuristicLab.Operators.Views.GraphVisualization {
2  partial class OperatorGraphVisualizationView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OperatorGraphVisualizationView));
27      this.graphVisualization = new HeuristicLab.Netron.NetronVisualization();
28      ((System.ComponentModel.ISupportInitialize)(this.graphVisualization)).BeginInit();
29      this.SuspendLayout();
30      //
31      // netronVisualization1
32      //
33      this.graphVisualization.AllowDrop = true;
34      this.graphVisualization.AutoScroll = true;
35      this.graphVisualization.BackColor = System.Drawing.Color.DarkGray;
36      this.graphVisualization.BackgroundType = global::Netron.Diagramming.Core.CanvasBackgroundTypes.FlatColor;
37      this.graphVisualization.Dock = System.Windows.Forms.DockStyle.Fill;     
38      this.graphVisualization.EnableAddConnection = true;
39      this.graphVisualization.FileName = "";
40      this.graphVisualization.Location = new System.Drawing.Point(0, 0);
41      this.graphVisualization.Magnification = new System.Drawing.SizeF(71F, 71F);
42      this.graphVisualization.Name = "graphVisualization";
43      this.graphVisualization.Origin = new System.Drawing.Point(0, 0);
44      this.graphVisualization.ShowConnectors = true;
45      this.graphVisualization.ShowRulers = false;
46      this.graphVisualization.Size = new System.Drawing.Size(602, 432);
47      this.graphVisualization.TabIndex = 0;
48      this.graphVisualization.Text = "graphVisualization";
49      //
50      // OperatorGraphVisualizationView
51      //
52      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
53      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
54      this.Controls.Add(this.graphVisualization);
55      this.Name = "OperatorGraphVisualizationView";
56      this.Size = new System.Drawing.Size(602, 432);
57      ((System.ComponentModel.ISupportInitialize)(this.graphVisualization)).EndInit();
58      this.ResumeLayout(false);
59
60    }
61
62    #endregion
63
64    private HeuristicLab.Netron.NetronVisualization graphVisualization;
65
66
67
68  }
69}
Note: See TracBrowser for help on using the repository browser.