Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CodeEditor/HeuristicLab.CodeEditor/3.4/CodeViewer.Designer.cs @ 11738

Last change on this file since 11738 was 11700, checked in by jkarder, 9 years ago

#2077: created branch and added first version

File size: 2.8 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.okButton = new System.Windows.Forms.Button();
27      this.elementHost = new System.Windows.Forms.Integration.ElementHost();
28      this.avalonEditWrapper = new HeuristicLab.CodeEditor.AvalonEditWrapper();
29      this.SuspendLayout();
30      //
31      // okButton
32      //
33      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
34      this.okButton.Location = new System.Drawing.Point(647, 426);
35      this.okButton.Name = "okButton";
36      this.okButton.Size = new System.Drawing.Size(75, 23);
37      this.okButton.TabIndex = 0;
38      this.okButton.Text = "OK";
39      this.okButton.UseVisualStyleBackColor = true;
40      this.okButton.Click += new System.EventHandler(this.okButton_Click);
41      //
42      // elementHost
43      //
44      this.elementHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
45            | System.Windows.Forms.AnchorStyles.Left)
46            | System.Windows.Forms.AnchorStyles.Right)));
47      this.elementHost.Location = new System.Drawing.Point(12, 12);
48      this.elementHost.Name = "elementHost";
49      this.elementHost.Size = new System.Drawing.Size(710, 408);
50      this.elementHost.TabIndex = 1;
51      this.elementHost.Child = this.avalonEditWrapper;
52      //
53      // CodeViewer
54      //
55      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
56      this.ClientSize = new System.Drawing.Size(734, 461);
57      this.Controls.Add(this.elementHost);
58      this.Controls.Add(this.okButton);
59      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
60      this.Name = "CodeViewer";
61      this.Text = "CodeViewer";
62      this.ResumeLayout(false);
63
64    }
65
66    #endregion
67
68    private System.Windows.Forms.Button okButton;
69    private System.Windows.Forms.Integration.ElementHost elementHost;
70    private AvalonEditWrapper avalonEditWrapper;
71  }
72}
Note: See TracBrowser for help on using the repository browser.