Changeset 10302 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs
- Timestamp:
- 01/08/14 13:58:54 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs
r10300 r10302 1 using HeuristicLab.Visualization; 2 1 3 2 namespace HeuristicLab.EvolutionTracking.Views { 4 3 partial class GenealogyGraphView { … … 26 25 /// </summary> 27 26 private void InitializeComponent() { 27 this.splitContainer = new System.Windows.Forms.SplitContainer(); 28 this.panel1 = new System.Windows.Forms.Panel(); 29 this.panel2 = new System.Windows.Forms.Panel(); 30 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 28 31 this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart(); 32 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 33 this.splitContainer.Panel1.SuspendLayout(); 34 this.splitContainer.Panel2.SuspendLayout(); 35 this.splitContainer.SuspendLayout(); 36 this.panel1.SuspendLayout(); 37 this.panel2.SuspendLayout(); 29 38 this.SuspendLayout(); 39 // 40 // splitContainer 41 // 42 this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill; 43 this.splitContainer.Location = new System.Drawing.Point(0, 0); 44 this.splitContainer.Name = "splitContainer"; 45 // 46 // splitContainer.Panel1 47 // 48 this.splitContainer.Panel1.Controls.Add(this.panel1); 49 // 50 // splitContainer.Panel2 51 // 52 this.splitContainer.Panel2.Controls.Add(this.panel2); 53 this.splitContainer.Size = new System.Drawing.Size(1128, 700); 54 this.splitContainer.SplitterDistance = 500; 55 this.splitContainer.TabIndex = 0; 56 // 57 // panel1 58 // 59 this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 60 this.panel1.Controls.Add(this.genealogyGraphChart); 61 this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; 62 this.panel1.Location = new System.Drawing.Point(0, 0); 63 this.panel1.Name = "panel1"; 64 this.panel1.Size = new System.Drawing.Size(500, 700); 65 this.panel1.TabIndex = 0; 66 // 67 // panel2 68 // 69 this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 70 this.panel2.Controls.Add(this.viewHost); 71 this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; 72 this.panel2.Location = new System.Drawing.Point(0, 0); 73 this.panel2.Name = "panel2"; 74 this.panel2.Size = new System.Drawing.Size(624, 700); 75 this.panel2.TabIndex = 0; 76 // 77 // viewHost 78 // 79 this.viewHost.Caption = "View"; 80 this.viewHost.Content = null; 81 this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill; 82 this.viewHost.Enabled = false; 83 this.viewHost.Location = new System.Drawing.Point(0, 0); 84 this.viewHost.Name = "viewHost"; 85 this.viewHost.ReadOnly = false; 86 this.viewHost.Size = new System.Drawing.Size(622, 698); 87 this.viewHost.TabIndex = 0; 88 this.viewHost.ViewsLabelVisible = true; 89 this.viewHost.ViewType = null; 30 90 // 31 91 // genealogyGraphChart 32 92 // 33 93 this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control; 34 this.genealogyGraphChart.Chart = new Chart(0, 0, genealogyGraphChart.PreferredSize.Width, genealogyGraphChart.PreferredSize.Height);35 94 this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill; 95 this.genealogyGraphChart.GenealogyGraph = null; 36 96 this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0); 37 97 this.genealogyGraphChart.LockGenealogy = false; … … 39 99 this.genealogyGraphChart.ScaleOnResize = true; 40 100 this.genealogyGraphChart.SimpleLineages = false; 41 this.genealogyGraphChart.Size = new System.Drawing.Size( 150, 150);42 this.genealogyGraphChart.TabIndex = 0;101 this.genealogyGraphChart.Size = new System.Drawing.Size(498, 698); 102 this.genealogyGraphChart.TabIndex = 2; 43 103 // 44 // SymbolicDataAnalysisGenealogyView104 // GenealogyGraphView 45 105 // 46 106 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 47 107 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 48 this.Controls.Add(this.genealogyGraphChart); 49 this.Name = "SymbolicDataAnalysisGenealogyView"; 108 this.Controls.Add(this.splitContainer); 109 this.Name = "GenealogyGraphView"; 110 this.Size = new System.Drawing.Size(1128, 700); 111 this.splitContainer.Panel1.ResumeLayout(false); 112 this.splitContainer.Panel2.ResumeLayout(false); 113 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit(); 114 this.splitContainer.ResumeLayout(false); 115 this.panel1.ResumeLayout(false); 116 this.panel2.ResumeLayout(false); 50 117 this.ResumeLayout(false); 51 118 … … 54 121 #endregion 55 122 56 private EvolutionTracking.Views.GenealogyGraphChart genealogyGraphChart; 123 private System.Windows.Forms.SplitContainer splitContainer; 124 private MainForm.WindowsForms.ViewHost viewHost; 125 private System.Windows.Forms.Panel panel1; 126 private System.Windows.Forms.Panel panel2; 127 private GenealogyGraphChart genealogyGraphChart; 128 57 129 } 58 130 }
Note: See TracChangeset
for help on using the changeset viewer.