Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfoView.Designer.cs @ 3386

Last change on this file since 3386 was 3386, checked in by mkommend, 14 years ago

completly refactored the graph visualization (ticket #867)

File size: 3.1 KB
Line 
1namespace HeuristicLab.Operators.Views.GraphVisualization {
2  partial class GraphVisualizationInfoView {
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      this.components = new System.ComponentModel.Container();
27      this.graphVisualization = new HeuristicLab.Netron.NetronVisualization();
28      ((System.ComponentModel.ISupportInitialize)(this.graphVisualization)).BeginInit();
29      this.SuspendLayout();
30      //
31      // graphVisualization
32      //
33      this.graphVisualization.AllowDrop = false;
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(80F, 80F);
42      this.graphVisualization.Name = "graphVisualization";
43      this.graphVisualization.Origin = new System.Drawing.Point(0, 0);
44      this.graphVisualization.PageSize = new System.Drawing.Size(100000, 100000);
45      this.graphVisualization.ShowConnectors = true;
46      this.graphVisualization.ShowRulers = false;
47      this.graphVisualization.Size = new System.Drawing.Size(665, 444);
48      this.graphVisualization.TabIndex = 0;
49      this.graphVisualization.OnEntityRemoved += new System.EventHandler<global::Netron.Diagramming.Core.EntityEventArgs>(this.graphVisualization_OnEntityRemoved);
50      this.graphVisualization.OnEntityAdded += new System.EventHandler<global::Netron.Diagramming.Core.EntityEventArgs>(this.graphVisualization_OnEntityAdded);
51     
52      //
53      // GraphVisualizationInfoView
54      //
55      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
56      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
57      this.Controls.Add(this.graphVisualization);
58      this.Name = "GraphVisualizationInfoView";
59      this.Size = new System.Drawing.Size(665, 444);
60      ((System.ComponentModel.ISupportInitialize)(this.graphVisualization)).EndInit();
61      this.ResumeLayout(false);
62    }
63    #endregion
64
65    private HeuristicLab.Netron.NetronVisualization graphVisualization;
66  }
67}
Note: See TracBrowser for help on using the repository browser.