Free cookie consent management tool by TermsFeed Policy Generator

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

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

Add new Plugin that provides a code editor with syntax highlighting and code completion (#842)

File size: 3.0 KB
Line 
1namespace HeuristicLab.CodeEditor {
2  partial class CodeViewer {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
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 && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.button1 = new System.Windows.Forms.Button();
27      this.textEditorControl1 = new ICSharpCode.TextEditor.TextEditorControl();
28      this.SuspendLayout();
29      //
30      // button1
31      //
32      this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
33      this.button1.Location = new System.Drawing.Point(509, 296);
34      this.button1.Name = "button1";
35      this.button1.Size = new System.Drawing.Size(75, 23);
36      this.button1.TabIndex = 1;
37      this.button1.Text = "OK";
38      this.button1.UseVisualStyleBackColor = true;
39      this.button1.Click += new System.EventHandler(this.button1_Click);
40      //
41      // textEditorControl1
42      //
43      this.textEditorControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
44                  | System.Windows.Forms.AnchorStyles.Left)
45                  | System.Windows.Forms.AnchorStyles.Right)));
46      this.textEditorControl1.IsReadOnly = false;
47      this.textEditorControl1.Location = new System.Drawing.Point(12, 12);
48      this.textEditorControl1.Name = "textEditorControl1";
49      this.textEditorControl1.ShowEOLMarkers = true;
50      this.textEditorControl1.ShowSpaces = true;
51      this.textEditorControl1.ShowTabs = true;
52      this.textEditorControl1.ShowVRuler = false;
53      this.textEditorControl1.Size = new System.Drawing.Size(572, 278);
54      this.textEditorControl1.TabIndex = 2;
55      this.textEditorControl1.Text = "textEditorControl1";
56      //
57      // CodeViewer
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.ClientSize = new System.Drawing.Size(596, 331);
62      this.Controls.Add(this.textEditorControl1);
63      this.Controls.Add(this.button1);
64      this.Name = "CodeViewer";
65      this.Text = "GeneratedCode";
66      this.ResumeLayout(false);
67
68    }
69
70    #endregion
71
72    private System.Windows.Forms.Button button1;
73    private ICSharpCode.TextEditor.TextEditorControl textEditorControl1;
74  }
75}
Note: See TracBrowser for help on using the repository browser.