Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Data Path DataTypes/HeuristicLab.Data.Views/3.3/Path Views/TextFileView.Designer.cs @ 9671

Last change on this file since 9671 was 9671, checked in by mkommend, 11 years ago

#2081: Added new path data types and view.

File size: 6.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Problems.SciLabParameterOptimization.Data {
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.fileValueView = new HeuristicLab.Problems.SciLabParameterOptimization.FileValueView();
53      this.textBox = new System.Windows.Forms.TextBox();
54      ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher)).BeginInit();
55      this.SuspendLayout();
56      //
57      // saveButton
58      //
59      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
60      this.saveButton.CausesValidation = false;
61      this.saveButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
62      this.saveButton.Location = new System.Drawing.Point(394, 3);
63      this.saveButton.Name = "saveButton";
64      this.saveButton.Size = new System.Drawing.Size(24, 24);
65      this.saveButton.TabIndex = 2;
66      this.saveButton.UseVisualStyleBackColor = true;
67      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
68      //
69      // fileSystemWatcher
70      //
71      this.fileSystemWatcher.EnableRaisingEvents = false;
72      this.fileSystemWatcher.NotifyFilter = System.IO.NotifyFilters.LastWrite | System.IO.NotifyFilters.FileName;
73      this.fileSystemWatcher.SynchronizingObject = this;
74      this.fileSystemWatcher.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
75      this.fileSystemWatcher.Created += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
76      this.fileSystemWatcher.Deleted += new System.IO.FileSystemEventHandler(this.fileSystemWatcher_Changed);
77      this.fileSystemWatcher.Renamed += new System.IO.RenamedEventHandler(this.fileSystemWatcher_Renamed);
78      //
79      // fileValueView
80      //
81      this.fileValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
82            | System.Windows.Forms.AnchorStyles.Right)));
83      this.fileValueView.Caption = "FileValueView";
84      this.fileValueView.Content = null;
85      this.fileValueView.LabelVisible = true;
86      this.fileValueView.Location = new System.Drawing.Point(4, 3);
87      this.fileValueView.Name = "fileValueView";
88      this.fileValueView.ReadOnly = false;
89      this.fileValueView.Size = new System.Drawing.Size(389, 24);
90      this.fileValueView.TabIndex = 3;
91      //
92      // textBox
93      //
94      this.textBox.AcceptsReturn = true;
95      this.textBox.AcceptsTab = true;
96      this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97            | System.Windows.Forms.AnchorStyles.Left)
98            | System.Windows.Forms.AnchorStyles.Right)));
99      this.textBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
100      this.textBox.Location = new System.Drawing.Point(3, 35);
101      this.textBox.Multiline = true;
102      this.textBox.Name = "textBox";
103      this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
104      this.textBox.Size = new System.Drawing.Size(415, 363);
105      this.textBox.TabIndex = 4;
106      this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged);
107      this.textBox.Validated += new System.EventHandler(this.textBox_Validated);
108      //
109      // TextFileView
110      //
111      this.Controls.Add(this.textBox);
112      this.Controls.Add(this.fileValueView);
113      this.Controls.Add(this.saveButton);
114      this.Name = "TextFileView";
115      this.Size = new System.Drawing.Size(421, 401);
116      ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher)).EndInit();
117      this.ResumeLayout(false);
118      this.PerformLayout();
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.Button saveButton;
125    private System.Windows.Forms.SaveFileDialog saveFileDialog;
126    private System.IO.FileSystemWatcher fileSystemWatcher;
127    private FileValueView fileValueView;
128    private System.Windows.Forms.TextBox textBox;
129  }
130}
Note: See TracBrowser for help on using the repository browser.