Free cookie consent management tool by TermsFeed Policy Generator

source: branches/gteufl/HeuristicLab.Data.Views/3.3/Path Views/TextFileView.Designer.cs @ 12969

Last change on this file since 12969 was 12969, checked in by gkronber, 9 years ago

#2478 merged all changes from trunk to branch before trunk-reintegration

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22
23namespace HeuristicLab.Data.Views {
24  partial class TextFileView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextFileView));
49      this.saveButton = new System.Windows.Forms.Button();
50      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
51      this.fileSystemWatcher = new System.IO.FileSystemWatcher();
52      this.textBox = new System.Windows.Forms.TextBox();
53      ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher)).BeginInit();
54      this.SuspendLayout();
55      //
56      // openButton
57      //
58      this.openButton.Location = new System.Drawing.Point(365, 0);
59      //
60      // stringConvertibleValueView
61      //
62      this.stringConvertibleValueView.Size = new System.Drawing.Size(355, 21);
63      //
64      // saveButton
65      //
66      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
67      this.saveButton.CausesValidation = false;
68      this.saveButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
69      this.saveButton.Location = new System.Drawing.Point(395, 0);
70      this.saveButton.Name = "saveButton";
71      this.saveButton.Size = new System.Drawing.Size(24, 24);
72      this.saveButton.TabIndex = 2;
73      this.saveButton.UseVisualStyleBackColor = true;
74      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
75      //
76      // fileSystemWatcher
77      //
78      this.fileSystemWatcher.EnableRaisingEvents = true;
79      this.fileSystemWatcher.NotifyFilter = ((System.IO.NotifyFilters)((System.IO.NotifyFilters.FileName | System.IO.NotifyFilters.LastWrite)));
80      this.fileSystemWatcher.SynchronizingObject = this;
81      this.fileSystemWatcher.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
82      this.fileSystemWatcher.Created += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
83      this.fileSystemWatcher.Deleted += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
84      this.fileSystemWatcher.Renamed += new System.IO.RenamedEventHandler(this.fileSystemWatcher_Renamed);
85      //
86      // textBox
87      //
88      this.textBox.AcceptsReturn = true;
89      this.textBox.AcceptsTab = true;
90      this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91            | System.Windows.Forms.AnchorStyles.Left)
92            | System.Windows.Forms.AnchorStyles.Right)));
93      this.textBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
94      this.textBox.Location = new System.Drawing.Point(3, 30);
95      this.textBox.Multiline = true;
96      this.textBox.Name = "textBox";
97      this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
98      this.textBox.Size = new System.Drawing.Size(415, 368);
99      this.textBox.TabIndex = 4;
100      this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged);
101      this.textBox.Validated += new System.EventHandler(this.textBox_Validated);
102      //
103      // TextFileView
104      //
105      this.Controls.Add(this.textBox);
106      this.Controls.Add(this.saveButton);
107      this.Name = "TextFileView";
108      this.Size = new System.Drawing.Size(421, 401);
109      this.Controls.SetChildIndex(this.saveButton, 0);
110      this.Controls.SetChildIndex(this.textBox, 0);
111      this.Controls.SetChildIndex(this.openButton, 0);
112      this.Controls.SetChildIndex(this.stringConvertibleValueView, 0);
113      ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher)).EndInit();
114      this.ResumeLayout(false);
115      this.PerformLayout();
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.Button saveButton;
122    private System.Windows.Forms.SaveFileDialog saveFileDialog;
123    private System.IO.FileSystemWatcher fileSystemWatcher;
124    private System.Windows.Forms.TextBox textBox;
125  }
126}
Note: See TracBrowser for help on using the repository browser.