~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/ProjectEditor/editor/ConfigurationEditor/AddConfigurationDialog.Designer.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
using System.Text;
 
4
 
 
5
namespace NUnit.ProjectEditor
 
6
{
 
7
    partial class AddConfigurationDialog
 
8
    {
 
9
        /// <summary>
 
10
        /// Required designer variable.
 
11
        /// </summary>
 
12
        private System.ComponentModel.Container components = null;
 
13
 
 
14
        /// <summary>
 
15
        /// Clean up any resources being used.
 
16
        /// </summary>
 
17
        protected override void Dispose(bool disposing)
 
18
        {
 
19
            if (disposing)
 
20
            {
 
21
                if (components != null)
 
22
                {
 
23
                    components.Dispose();
 
24
                }
 
25
            }
 
26
            base.Dispose(disposing);
 
27
        }
 
28
 
 
29
        #region Windows Form Designer generated code
 
30
        /// <summary>
 
31
        /// Required method for Designer support - do not modify
 
32
        /// the contents of this method with the code editor.
 
33
        /// </summary>
 
34
        private void InitializeComponent()
 
35
        {
 
36
            this.configurationNameTextBox = new System.Windows.Forms.TextBox();
 
37
            this.okButton = new System.Windows.Forms.Button();
 
38
            this.cancelButton = new System.Windows.Forms.Button();
 
39
            this.configurationComboBox = new System.Windows.Forms.ComboBox();
 
40
            this.label1 = new System.Windows.Forms.Label();
 
41
            this.label2 = new System.Windows.Forms.Label();
 
42
            this.SuspendLayout();
 
43
            // 
 
44
            // configurationNameTextBox
 
45
            // 
 
46
            this.configurationNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 
47
                        | System.Windows.Forms.AnchorStyles.Right)));
 
48
            this.configurationNameTextBox.Location = new System.Drawing.Point(16, 24);
 
49
            this.configurationNameTextBox.Name = "configurationNameTextBox";
 
50
            this.configurationNameTextBox.Size = new System.Drawing.Size(254, 22);
 
51
            this.configurationNameTextBox.TabIndex = 0;
 
52
            // 
 
53
            // okButton
 
54
            // 
 
55
            this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
 
56
            this.okButton.Location = new System.Drawing.Point(50, 120);
 
57
            this.okButton.Name = "okButton";
 
58
            this.okButton.Size = new System.Drawing.Size(76, 23);
 
59
            this.okButton.TabIndex = 2;
 
60
            this.okButton.Text = "OK";
 
61
            // 
 
62
            // cancelButton
 
63
            // 
 
64
            this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
 
65
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
66
            this.cancelButton.Location = new System.Drawing.Point(155, 120);
 
67
            this.cancelButton.Name = "cancelButton";
 
68
            this.cancelButton.Size = new System.Drawing.Size(75, 23);
 
69
            this.cancelButton.TabIndex = 3;
 
70
            this.cancelButton.Text = "Cancel";
 
71
            // 
 
72
            // configurationComboBox
 
73
            // 
 
74
            this.configurationComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 
75
                        | System.Windows.Forms.AnchorStyles.Right)));
 
76
            this.configurationComboBox.ItemHeight = 16;
 
77
            this.configurationComboBox.Location = new System.Drawing.Point(16, 80);
 
78
            this.configurationComboBox.Name = "configurationComboBox";
 
79
            this.configurationComboBox.Size = new System.Drawing.Size(256, 24);
 
80
            this.configurationComboBox.TabIndex = 1;
 
81
            // 
 
82
            // label1
 
83
            // 
 
84
            this.label1.Location = new System.Drawing.Point(16, 8);
 
85
            this.label1.Name = "label1";
 
86
            this.label1.Size = new System.Drawing.Size(248, 16);
 
87
            this.label1.TabIndex = 4;
 
88
            this.label1.Text = "Configuration Name:";
 
89
            // 
 
90
            // label2
 
91
            // 
 
92
            this.label2.Location = new System.Drawing.Point(16, 63);
 
93
            this.label2.Name = "label2";
 
94
            this.label2.Size = new System.Drawing.Size(240, 17);
 
95
            this.label2.TabIndex = 5;
 
96
            this.label2.Text = "Copy Settings From:";
 
97
            // 
 
98
            // AddConfigurationDialog
 
99
            // 
 
100
            this.AcceptButton = this.okButton;
 
101
            this.CancelButton = this.cancelButton;
 
102
            this.ClientSize = new System.Drawing.Size(280, 149);
 
103
            this.Controls.Add(this.label2);
 
104
            this.Controls.Add(this.label1);
 
105
            this.Controls.Add(this.configurationComboBox);
 
106
            this.Controls.Add(this.cancelButton);
 
107
            this.Controls.Add(this.okButton);
 
108
            this.Controls.Add(this.configurationNameTextBox);
 
109
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
 
110
            this.Name = "AddConfigurationDialog";
 
111
            this.ShowInTaskbar = false;
 
112
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 
113
            this.Text = "New Configuration";
 
114
            this.ResumeLayout(false);
 
115
            this.PerformLayout();
 
116
 
 
117
        }
 
118
        #endregion
 
119
 
 
120
        private System.Windows.Forms.Button okButton;
 
121
        private System.Windows.Forms.Button cancelButton;
 
122
        private System.Windows.Forms.TextBox configurationNameTextBox;
 
123
        private System.Windows.Forms.Label label1;
 
124
        private System.Windows.Forms.Label label2;
 
125
        private System.Windows.Forms.ComboBox configurationComboBox;
 
126
 
 
127
    }
 
128
}