1 | namespace HeuristicLab.Communication.Data {
|
---|
2 | partial class WindowedView {
|
---|
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.saveButton = new System.Windows.Forms.Button();
|
---|
27 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
28 | this.viewPanel = new System.Windows.Forms.Panel();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // saveButton
|
---|
32 | //
|
---|
33 | this.saveButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
---|
34 | this.saveButton.Location = new System.Drawing.Point(70, 238);
|
---|
35 | this.saveButton.Name = "saveButton";
|
---|
36 | this.saveButton.Size = new System.Drawing.Size(75, 23);
|
---|
37 | this.saveButton.TabIndex = 0;
|
---|
38 | this.saveButton.Text = "Save";
|
---|
39 | this.saveButton.UseVisualStyleBackColor = true;
|
---|
40 | this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
---|
41 | //
|
---|
42 | // cancelButton
|
---|
43 | //
|
---|
44 | this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
---|
45 | this.cancelButton.Location = new System.Drawing.Point(150, 238);
|
---|
46 | this.cancelButton.Name = "cancelButton";
|
---|
47 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
48 | this.cancelButton.TabIndex = 1;
|
---|
49 | this.cancelButton.Text = "Cancel";
|
---|
50 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
51 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
52 | //
|
---|
53 | // viewPanel
|
---|
54 | //
|
---|
55 | this.viewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
56 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
57 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
58 | this.viewPanel.Location = new System.Drawing.Point(0, 0);
|
---|
59 | this.viewPanel.Margin = new System.Windows.Forms.Padding(0);
|
---|
60 | this.viewPanel.Name = "viewPanel";
|
---|
61 | this.viewPanel.Size = new System.Drawing.Size(292, 230);
|
---|
62 | this.viewPanel.TabIndex = 2;
|
---|
63 | //
|
---|
64 | // WindowedView
|
---|
65 | //
|
---|
66 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
67 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
68 | this.ClientSize = new System.Drawing.Size(292, 273);
|
---|
69 | this.Controls.Add(this.viewPanel);
|
---|
70 | this.Controls.Add(this.cancelButton);
|
---|
71 | this.Controls.Add(this.saveButton);
|
---|
72 | this.Name = "WindowedView";
|
---|
73 | this.Text = "View";
|
---|
74 | this.ResumeLayout(false);
|
---|
75 |
|
---|
76 | }
|
---|
77 |
|
---|
78 | #endregion
|
---|
79 |
|
---|
80 | private System.Windows.Forms.Button saveButton;
|
---|
81 | private System.Windows.Forms.Button cancelButton;
|
---|
82 | private System.Windows.Forms.Panel viewPanel;
|
---|
83 | }
|
---|
84 | } |
---|