Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.Slave.Views/3.3/LogView.Designer.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 3.9 KB
RevLine 
[6983]1#region License Information
2/* HeuristicLab
[16057]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6983]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
22namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
23  partial class LogView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.chkShowBalloonTips = new System.Windows.Forms.CheckBox();
[7182]48      this.hlLogView = new HeuristicLab.Core.Views.LogView();
[6983]49      this.SuspendLayout();
50      //
51      // chkShowBalloonTips
52      //
53      this.chkShowBalloonTips.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
54      this.chkShowBalloonTips.AutoSize = true;
55      this.chkShowBalloonTips.Location = new System.Drawing.Point(3, 247);
56      this.chkShowBalloonTips.Name = "chkShowBalloonTips";
57      this.chkShowBalloonTips.Size = new System.Drawing.Size(291, 17);
58      this.chkShowBalloonTips.TabIndex = 3;
59      this.chkShowBalloonTips.Text = "Show Ballon Tips in System Tray on important messages";
60      this.chkShowBalloonTips.UseVisualStyleBackColor = true;
61      this.chkShowBalloonTips.CheckedChanged += new System.EventHandler(this.chkShowBalloonTips_CheckedChanged);
62      //
[7182]63      // hlLogView
64      //
65      this.hlLogView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
66                  | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.hlLogView.Caption = "Log View";
69      this.hlLogView.Content = null;
70      this.hlLogView.Location = new System.Drawing.Point(3, 3);
71      this.hlLogView.Name = "hlLogView";
72      this.hlLogView.ReadOnly = false;
73      this.hlLogView.Size = new System.Drawing.Size(480, 238);
74      this.hlLogView.TabIndex = 4;
75      //
[6983]76      // LogView
77      //
78      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
79      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[7182]80      this.Controls.Add(this.hlLogView);
[6983]81      this.Controls.Add(this.chkShowBalloonTips);
82      this.Name = "LogView";
83      this.Size = new System.Drawing.Size(486, 267);
84      this.Load += new System.EventHandler(this.LogView_Load);
85      this.ResumeLayout(false);
86      this.PerformLayout();
87
88    }
89
90    #endregion
91
92    private System.Windows.Forms.CheckBox chkShowBalloonTips;
[7182]93    private HeuristicLab.Core.Views.LogView hlLogView;
[6983]94  }
95}
Note: See TracBrowser for help on using the repository browser.