Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks.Views.NetworkVisualization.Views/3.3/NetworkVisualizationView.Designer.cs @ 13077

Last change on this file since 13077 was 13077, checked in by jkarder, 8 years ago

#2205: worked on optimization networks

  • added first version of network visualization
  • updated frame files
File size: 2.6 KB
Line 
1namespace HeuristicLab.Networks.Views.NetworkVisualization.Views {
2  partial class NetworkVisualizationView {
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.chartControl = new HeuristicLab.Visualization.ChartControl();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // nameTextBox
31      //
32      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
33      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
34      //
35      // chartControl
36      //
37      this.chartControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
38            | System.Windows.Forms.AnchorStyles.Left)
39            | System.Windows.Forms.AnchorStyles.Right)));
40      this.chartControl.BackColor = System.Drawing.SystemColors.Control;
41      this.chartControl.Location = new System.Drawing.Point(3, 26);
42      this.chartControl.Name = "chartControl";
43      this.chartControl.ScaleOnResize = true;
44      this.chartControl.Size = new System.Drawing.Size(639, 488);
45      this.chartControl.TabIndex = 3;
46      //
47      // NetworkVisualizationView
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51      this.Controls.Add(this.chartControl);
52      this.Name = "NetworkVisualizationView";
53      this.Controls.SetChildIndex(this.nameLabel, 0);
54      this.Controls.SetChildIndex(this.nameTextBox, 0);
55      this.Controls.SetChildIndex(this.infoLabel, 0);
56      this.Controls.SetChildIndex(this.chartControl, 0);
57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
58      this.ResumeLayout(false);
59      this.PerformLayout();
60
61    }
62
63    #endregion
64
65    private Visualization.ChartControl chartControl;
66  }
67}
Note: See TracBrowser for help on using the repository browser.