Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CodeEditor/3.2/CodeEditor.Designer.cs @ 2667

Last change on this file since 2667 was 2667, checked in by epitzer, 14 years ago

Ensure proper resizing of CodeEditor and don't crash when removing non-existent assemblies (#842)

File size: 5.8 KB
Line 
1namespace HeuristicLab.CodeEditor {
2  public partial class CodeEditor : System.Windows.Forms.UserControl {
3    /// <summary>
4    /// Designer variable used to keep track of non-visual components.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Disposes resources used by the form.
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) {
14        if (components != null) {
15          components.Dispose();
16        }
17      }
18      base.Dispose(disposing);
19    }
20
21    /// <summary>
22    /// This method is required for Windows Forms designer support.
23    /// Do not change the method contents inside the source code editor. The Forms designer might
24    /// not be able to load this method if it was changed manually.
25    /// </summary>
26    private void InitializeComponent() {
27      this.components = new System.ComponentModel.Container();
28      System.Windows.Forms.ToolStripStatusLabel toolStripFiller;
29      this.textEditor = new ICSharpCode.TextEditor.TextEditorControl();
30      this.statusStrip1 = new System.Windows.Forms.StatusStrip();
31      this.parserThreadLabel = new System.Windows.Forms.ToolStripStatusLabel();
32      this.errorLabel = new System.Windows.Forms.ToolStripStatusLabel();
33      this.sharpDevelopLabel = new System.Windows.Forms.ToolStripStatusLabel();
34      this.imageList1 = new System.Windows.Forms.ImageList(this.components);
35      toolStripFiller = new System.Windows.Forms.ToolStripStatusLabel();
36      this.statusStrip1.SuspendLayout();
37      this.SuspendLayout();
38      //
39      // toolStripFiller
40      //
41      toolStripFiller.Name = "toolStripFiller";
42      toolStripFiller.Size = new System.Drawing.Size(395, 17);
43      toolStripFiller.Spring = true;
44      //
45      // textEditor
46      //
47      this.textEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
48                  | System.Windows.Forms.AnchorStyles.Left)
49                  | System.Windows.Forms.AnchorStyles.Right)));
50      this.textEditor.ConvertTabsToSpaces = true;
51      this.textEditor.IndentStyle = ICSharpCode.TextEditor.Document.IndentStyle.Auto;
52      this.textEditor.IsIconBarVisible = true;
53      this.textEditor.IsReadOnly = false;
54      this.textEditor.Location = new System.Drawing.Point(0, 0);
55      this.textEditor.Name = "textEditor";
56      this.textEditor.ShowEOLMarkers = true;
57      this.textEditor.ShowSpaces = true;
58      this.textEditor.ShowTabs = true;
59      this.textEditor.ShowVRuler = false;
60      this.textEditor.Size = new System.Drawing.Size(556, 245);
61      this.textEditor.TabIndent = 2;
62      this.textEditor.TabIndex = 0;
63      //
64      // statusStrip1
65      //
66      this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
67            this.parserThreadLabel,
68            toolStripFiller,
69            this.errorLabel,
70            this.sharpDevelopLabel});
71      this.statusStrip1.Location = new System.Drawing.Point(0, 248);
72      this.statusStrip1.Name = "statusStrip1";
73      this.statusStrip1.Size = new System.Drawing.Size(556, 22);
74      this.statusStrip1.TabIndex = 1;
75      this.statusStrip1.Text = "statusStrip1";
76      //
77      // parserThreadLabel
78      //
79      this.parserThreadLabel.Name = "parserThreadLabel";
80      this.parserThreadLabel.Size = new System.Drawing.Size(39, 17);
81      this.parserThreadLabel.Text = "Ready";
82      //
83      // errorLabel
84      //
85      this.errorLabel.ForeColor = System.Drawing.Color.Red;
86      this.errorLabel.Name = "errorLabel";
87      this.errorLabel.Size = new System.Drawing.Size(0, 17);
88      //
89      // sharpDevelopLabel
90      //
91      this.sharpDevelopLabel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
92      this.sharpDevelopLabel.IsLink = true;
93      this.sharpDevelopLabel.Name = "sharpDevelopLabel";
94      this.sharpDevelopLabel.Size = new System.Drawing.Size(107, 17);
95      this.sharpDevelopLabel.Tag = "http://www.icsharpcode.net/OpenSource/SD/";
96      this.sharpDevelopLabel.Text = "powered by #develop";
97      this.sharpDevelopLabel.ToolTipText = "Syntax highlighting and code completion facilities provided through #develop libr" +
98          "aries";
99      this.sharpDevelopLabel.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
100      //
101      // imageList1
102      //
103      this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
104      this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
105      this.imageList1.TransparentColor = System.Drawing.Color.White;
106      //
107      // CodeEditor
108      //
109      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
111      this.Controls.Add(this.textEditor);
112      this.Controls.Add(this.statusStrip1);
113      this.Name = "CodeEditor";
114      this.Size = new System.Drawing.Size(556, 270);
115      this.Resize += new System.EventHandler(this.CodeEditor_Resize);
116      this.statusStrip1.ResumeLayout(false);
117      this.statusStrip1.PerformLayout();
118      this.ResumeLayout(false);
119      this.PerformLayout();
120
121    }
122    internal System.Windows.Forms.ImageList imageList1;
123    private System.Windows.Forms.ToolStripStatusLabel parserThreadLabel;
124    private System.Windows.Forms.StatusStrip statusStrip1;
125    private ICSharpCode.TextEditor.TextEditorControl textEditor;
126    private System.Windows.Forms.ToolStripStatusLabel sharpDevelopLabel;
127    private System.Windows.Forms.ToolStripStatusLabel errorLabel;
128  }
129}
Note: See TracBrowser for help on using the repository browser.