Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs @ 11506

Last change on this file since 11506 was 11506, checked in by bburlacu, 9 years ago

#1772: Updated views (fixed position and anchors).

File size: 4.0 KB
Line 
1
2namespace HeuristicLab.EvolutionTracking.Views {
3  partial class GenealogyGraphView {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Component Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.splitContainer = new System.Windows.Forms.SplitContainer();
28      this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart();
29      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
30      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
31      this.splitContainer.Panel1.SuspendLayout();
32      this.splitContainer.Panel2.SuspendLayout();
33      this.splitContainer.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // splitContainer
37      //
38      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
39      this.splitContainer.Location = new System.Drawing.Point(0, 0);
40      this.splitContainer.Name = "splitContainer";
41      //
42      // splitContainer.Panel1
43      //
44      this.splitContainer.Panel1.Controls.Add(this.genealogyGraphChart);
45      //
46      // splitContainer.Panel2
47      //
48      this.splitContainer.Panel2.Controls.Add(this.viewHost);
49      this.splitContainer.Size = new System.Drawing.Size(894, 678);
50      this.splitContainer.SplitterDistance = 417;
51      this.splitContainer.TabIndex = 0;
52      //
53      // genealogyGraphChart
54      //
55      this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;
56      this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill;
57      this.genealogyGraphChart.GenealogyGraph = null;
58      this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0);
59      this.genealogyGraphChart.LockGenealogy = false;
60      this.genealogyGraphChart.Name = "genealogyGraphChart";
61      this.genealogyGraphChart.ScaleOnResize = true;
62      this.genealogyGraphChart.SimpleLineages = false;
63      this.genealogyGraphChart.Size = new System.Drawing.Size(417, 678);
64      this.genealogyGraphChart.TabIndex = 2;
65      this.genealogyGraphChart.TraceFragments = false;
66      //
67      // viewHost
68      //
69      this.viewHost.Caption = "View";
70      this.viewHost.Content = null;
71      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
72      this.viewHost.Enabled = false;
73      this.viewHost.Location = new System.Drawing.Point(0, 0);
74      this.viewHost.Name = "viewHost";
75      this.viewHost.ReadOnly = false;
76      this.viewHost.Size = new System.Drawing.Size(473, 678);
77      this.viewHost.TabIndex = 0;
78      this.viewHost.ViewsLabelVisible = true;
79      this.viewHost.ViewType = null;
80      //
81      // GenealogyGraphView
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85      this.Controls.Add(this.splitContainer);
86      this.Name = "GenealogyGraphView";
87      this.Size = new System.Drawing.Size(894, 678);
88      this.splitContainer.Panel1.ResumeLayout(false);
89      this.splitContainer.Panel2.ResumeLayout(false);
90      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
91      this.splitContainer.ResumeLayout(false);
92      this.ResumeLayout(false);
93
94    }
95
96    #endregion
97
98    protected System.Windows.Forms.SplitContainer splitContainer;
99    protected MainForm.WindowsForms.ViewHost viewHost;
100    protected GenealogyGraphChart genealogyGraphChart;
101
102  }
103}
Note: See TracBrowser for help on using the repository browser.