Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/AboutDialog.Designer.cs @ 7135

Last change on this file since 7135 was 6983, checked in by ascheibe, 12 years ago

#1672

  • added the Hive Services and Slave projects
  • added missing svn ignores
File size: 3.2 KB
Line 
1namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
2  partial class AboutDialog {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
27      this.okButton = new System.Windows.Forms.Button();
28      this.aboutView = new HeuristicLab.Clients.Hive.SlaveCore.Views.AboutView();
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.DialogResult = System.Windows.Forms.DialogResult.OK;
35      this.okButton.Location = new System.Drawing.Point(493, 296);
36      this.okButton.Name = "okButton";
37      this.okButton.Size = new System.Drawing.Size(75, 23);
38      this.okButton.TabIndex = 1;
39      this.okButton.Text = "&Close";
40      this.okButton.UseVisualStyleBackColor = true;
41      this.okButton.Click += new System.EventHandler(this.okButton_Click);
42      //
43      // aboutView
44      //
45      this.aboutView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
46                  | System.Windows.Forms.AnchorStyles.Right)));
47      this.aboutView.Caption = "About View: Show some information about HeursticLab Hive";
48      this.aboutView.Content = null;
49      this.aboutView.Location = new System.Drawing.Point(12, 12);
50      this.aboutView.Name = "aboutView";
51      this.aboutView.ReadOnly = false;
52      this.aboutView.Size = new System.Drawing.Size(556, 278);
53      this.aboutView.TabIndex = 0;
54      //
55      // AboutDialog
56      //
57      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
59      this.ClientSize = new System.Drawing.Size(580, 331);
60      this.Controls.Add(this.okButton);
61      this.Controls.Add(this.aboutView);
62      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
63      this.MaximizeBox = false;
64      this.MinimizeBox = false;
65      this.Name = "AboutDialog";
66      this.ShowInTaskbar = false;
67      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
68      this.Text = "About HeuristicLab Hive";
69      this.ResumeLayout(false);
70
71    }
72
73    #endregion
74
75    private AboutView aboutView;
76    private System.Windows.Forms.Button okButton;
77  }
78}
Note: See TracBrowser for help on using the repository browser.