Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/GpdlEditor.Designer.cs @ 9674

Last change on this file since 9674 was 9674, checked in by gkronber, 11 years ago

#2026: Worked on integration of ICSharpCode.AvalonEdit control for GPDL syntax-highlighting and error reporting.

File size: 5.0 KB
Line 
1using System.Windows.Forms;
2using HeuristicLab.MainForm.WindowsForms;
3
4namespace HeuristicLab.Problems.GPDL.Views {
5  partial class GpdlEditor {
6    /// <summary>
7    /// Required designer variable.
8    /// </summary>
9    private System.ComponentModel.IContainer components = null;
10
11    /// <summary>
12    /// Clean up any resources being used.
13    /// </summary>
14    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
15    protected override void Dispose(bool disposing) {
16      if (disposing && (components != null)) {
17        components.Dispose();
18      }
19      base.Dispose(disposing);
20    }
21
22    #region Component Designer generated code
23
24    /// <summary>
25    /// Required method for Designer support - do not modify
26    /// the contents of this method with the code editor.
27    /// </summary>
28    private void InitializeComponent() {
29      this.compileButton = new System.Windows.Forms.Button();
30      this.splitContainer = new System.Windows.Forms.SplitContainer();
31      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
32      this.elementHost = new System.Windows.Forms.Integration.ElementHost();
33      this.codeEditor = new HeuristicLab.Problems.GPDL.Views.CodeEditor();
34      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
35      this.splitContainer.Panel1.SuspendLayout();
36      this.splitContainer.Panel2.SuspendLayout();
37      this.splitContainer.SuspendLayout();
38      this.SuspendLayout();
39      //
40      // compileButton
41      //
42      this.compileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
43      this.compileButton.Location = new System.Drawing.Point(583, 431);
44      this.compileButton.Name = "compileButton";
45      this.compileButton.Size = new System.Drawing.Size(75, 23);
46      this.compileButton.TabIndex = 0;
47      this.compileButton.Text = "Compile";
48      this.compileButton.UseVisualStyleBackColor = true;
49      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
50      //
51      // splitContainer
52      //
53      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.splitContainer.IsSplitterFixed = true;
55      this.splitContainer.Location = new System.Drawing.Point(0, 0);
56      this.splitContainer.Name = "splitContainer";
57      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
58      //
59      // splitContainer.Panel1
60      //
61      this.splitContainer.Panel1.Controls.Add(this.viewHost);
62      //
63      // splitContainer.Panel2
64      //
65      this.splitContainer.Panel2.Controls.Add(this.elementHost);
66      this.splitContainer.Panel2.Controls.Add(this.compileButton);
67      this.splitContainer.Size = new System.Drawing.Size(661, 487);
68      this.splitContainer.SplitterDistance = 26;
69      this.splitContainer.TabIndex = 2;
70      //
71      // viewHost
72      //
73      this.viewHost.Caption = "View";
74      this.viewHost.Content = null;
75      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
76      this.viewHost.Enabled = false;
77      this.viewHost.Location = new System.Drawing.Point(0, 0);
78      this.viewHost.Name = "viewHost";
79      this.viewHost.ReadOnly = false;
80      this.viewHost.Size = new System.Drawing.Size(661, 26);
81      this.viewHost.TabIndex = 0;
82      this.viewHost.ViewsLabelVisible = true;
83      this.viewHost.ViewType = null;
84      //
85      // elementHost
86      //
87      this.elementHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88            | System.Windows.Forms.AnchorStyles.Left)
89            | System.Windows.Forms.AnchorStyles.Right)));
90      this.elementHost.Location = new System.Drawing.Point(0, 0);
91      this.elementHost.Name = "elementHost";
92      this.elementHost.Size = new System.Drawing.Size(661, 425);
93      this.elementHost.TabIndex = 2;
94      this.elementHost.Text = "elementHost2";
95      this.elementHost.Child = this.codeEditor;
96      //
97      // GpdlEditor
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.splitContainer);
102      this.Name = "GpdlEditor";
103      this.Size = new System.Drawing.Size(661, 487);
104      this.splitContainer.Panel1.ResumeLayout(false);
105      this.splitContainer.Panel2.ResumeLayout(false);
106      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
107      this.splitContainer.ResumeLayout(false);
108      this.ResumeLayout(false);
109
110    }
111
112    #endregion
113
114    private ViewHost viewHost;
115    private System.Windows.Forms.Button compileButton;
116    private System.Windows.Forms.SplitContainer splitContainer;
117    private System.Windows.Forms.Integration.ElementHost elementHost;
118    private CodeEditor codeEditor;
119  }
120}
Note: See TracBrowser for help on using the repository browser.