Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.VariableInteractionNetworks/HeuristicLab.VariableInteractionNetworks.Views/3.3/VariableInteractionNetworkView.Designer.cs @ 12263

Last change on this file since 12263 was 12263, checked in by arapeanu, 9 years ago

#2288: Added adjacency matrix update by threshold and target variable functionality + node importance calculation

File size: 5.1 KB
Line 
1namespace HeuristicLab.VariableInteractionNetworks.Views
2{
3    partial class VariableInteractionNetworkView
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.groupBox1 = new System.Windows.Forms.GroupBox();
32            this.viewHost1 = new HeuristicLab.MainForm.WindowsForms.ViewHost();
33            this.viewHost2 = new HeuristicLab.MainForm.WindowsForms.ViewHost();
34            this.groupBox2 = new System.Windows.Forms.GroupBox();
35            this.viewHost3 = new HeuristicLab.MainForm.WindowsForms.ViewHost();
36            this.groupBox1.SuspendLayout();
37            this.groupBox2.SuspendLayout();
38            this.SuspendLayout();
39            //
40            // groupBox1
41            //
42            this.groupBox1.Controls.Add(this.viewHost1);
43            this.groupBox1.Controls.Add(this.viewHost2);
44            this.groupBox1.Location = new System.Drawing.Point(0, 3);
45            this.groupBox1.Name = "groupBox1";
46            this.groupBox1.Size = new System.Drawing.Size(635, 228);
47            this.groupBox1.TabIndex = 0;
48            this.groupBox1.TabStop = false;
49            this.groupBox1.Text = "Adjacency Matrix. Node Impacts";
50            //
51            // viewHost1
52            //
53            this.viewHost1.Caption = "View";
54            this.viewHost1.Content = null;
55            this.viewHost1.Enabled = false;
56            this.viewHost1.Location = new System.Drawing.Point(6, 19);
57            this.viewHost1.Name = "viewHost1";
58            this.viewHost1.ReadOnly = false;
59            this.viewHost1.Size = new System.Drawing.Size(354, 247);
60            this.viewHost1.TabIndex = 0;
61            this.viewHost1.ViewsLabelVisible = true;
62            this.viewHost1.ViewType = null;
63            //
64            // viewHost2
65            //
66            this.viewHost2.Caption = "View";
67            this.viewHost2.Content = null;
68            this.viewHost2.Enabled = false;
69            this.viewHost2.Location = new System.Drawing.Point(365, 19);
70            this.viewHost2.Name = "viewHost2";
71            this.viewHost2.ReadOnly = false;
72            this.viewHost2.Size = new System.Drawing.Size(210, 259);
73            this.viewHost2.TabIndex = 0;
74            this.viewHost2.ViewsLabelVisible = true;
75            this.viewHost2.ViewType = null;
76            //
77            // groupBox2
78            //
79            this.groupBox2.Controls.Add(this.viewHost3);
80            this.groupBox2.Location = new System.Drawing.Point(6, 268);
81            this.groupBox2.Name = "groupBox2";
82            this.groupBox2.Size = new System.Drawing.Size(629, 258);
83            this.groupBox2.TabIndex = 1;
84            this.groupBox2.TabStop = false;
85            this.groupBox2.Text = "Updated Adjacency Matrix (for target variable x1 and threshold 0.2)";
86            //
87            // viewHost3
88            //
89            this.viewHost3.Caption = "View";
90            this.viewHost3.Content = null;
91            this.viewHost3.Enabled = false;
92            this.viewHost3.Location = new System.Drawing.Point(6, 19);
93            this.viewHost3.Name = "viewHost3";
94            this.viewHost3.ReadOnly = false;
95            this.viewHost3.Size = new System.Drawing.Size(367, 239);
96            this.viewHost3.TabIndex = 0;
97            this.viewHost3.ViewsLabelVisible = true;
98            this.viewHost3.ViewType = null;
99            //
100            // VariableInteractionNetworkView
101            //
102            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104            this.Controls.Add(this.groupBox2);
105            this.Controls.Add(this.groupBox1);
106            this.Name = "VariableInteractionNetworkView";
107            this.Size = new System.Drawing.Size(635, 513);
108            this.groupBox1.ResumeLayout(false);
109            this.groupBox2.ResumeLayout(false);
110            this.ResumeLayout(false);
111
112        }
113
114        #endregion
115
116        private System.Windows.Forms.GroupBox groupBox1;
117        private MainForm.WindowsForms.ViewHost viewHost1;
118        private MainForm.WindowsForms.ViewHost viewHost2;
119        private System.Windows.Forms.GroupBox groupBox2;
120        private MainForm.WindowsForms.ViewHost viewHost3;
121    }
122}
Note: See TracBrowser for help on using the repository browser.