0:   //  LayoutManager.cs 
1:   //  Copyright (C) 2000 Mike Krueger
2:   // 
3:   //  This program is free software; you can redistribute it and/or
4:   //  modify it under the terms of the GNU General Public License
5:   //  as published by the Free Software Foundation; either version 2
6:   //  of the License, or any later version.
7:   // 
8:   //  This program is distributed in the hope that it will be useful,
9:   //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10:   //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11:   //  GNU General Public License for more details.
12:   // 
13:   //  You should have received a copy of the GNU General Public License
14:   //  along with this program; if not, write to the Free Software
15:   //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
16:  
17:   using System;
18:   using System.Drawing;
19:   using System.Collections;
20:   using System.ComponentModel;
21:   using System.Windows.Forms;
22:  
23:   namespace SharpDevelop.Gui.Dialogs {
24:       
25:       /// <summary>
26:       /// Summary description for Form3.
27:       /// </summary>
28:       public class LayoutManager : System.Windows.Forms.Form
29:       {
30:           private System.Windows.Forms.Label label1;
31:           private System.Windows.Forms.ComboBox comboBox1;
32:           private System.Windows.Forms.CheckBox checkBox1;
33:           private System.Windows.Forms.Button button1;
34:           private System.Windows.Forms.Button button2;
35:           /// <summary>
36:           /// Required designer variable.
37:           /// </summary>
38:           private System.ComponentModel.Container components null;
39:  
40:           public LayoutManager()
41:           {
42:               //
43:               // Required for Windows Form Designer support
44:               //
45:               InitializeComponent();
46:  
47:               //
48:               // TODO: Add any constructor code after InitializeComponent call
49:               //
50:           }
51:  
52:           /// <summary>
53:           /// Clean up any resources being used.
54:           /// </summary>
55:           protected override void Dispose(bool disposing)
56:           {
57:               if (disposing) {
58:                   if (components != null){
59:                       components.Dispose();
60:                   }
61:               }
62:               base.Dispose(disposing);
63:           }
64:  
65:           #region Windows Form Designer generated code
66:           /// <summary>
67:           /// Required method for Designer support - do not modify
68:           /// the contents of this method with the code editor.
69:           /// </summary>
70:           private void InitializeComponent()
71:           {
72:               this.label1 new System.Windows.Forms.Label();
73:               this.comboBox1 new System.Windows.Forms.ComboBox();
74:               this.checkBox1 new System.Windows.Forms.CheckBox();
75:               this.button1 new System.Windows.Forms.Button();
76:               this.button2 new System.Windows.Forms.Button();
77:               this.SuspendLayout();
78:               // 
79:               // label1
80:               // 
81:               this.label1.Location new System.Drawing.Point(88);
82:               this.label1.Name "label1";
83:               this.label1.Size new System.Drawing.Size(8016);
84:               this.label1.TabIndex 0;
85:               this.label1.Text "Layout Name";
86:               // 
87:               // comboBox1
88:               // 
89:               this.comboBox1.DropDownWidth 256;
90:               this.comboBox1.Location new System.Drawing.Point(888);
91:               this.comboBox1.Name "comboBox1";
92:               this.comboBox1.Size new System.Drawing.Size(25621);
93:               this.comboBox1.TabIndex 1;
94:               // 
95:               // checkBox1
96:               // 
97:               this.checkBox1.Location new System.Drawing.Point(840);
98:               this.checkBox1.Name "checkBox1";
99:               this.checkBox1.Size new System.Drawing.Size(33624);
100:               this.checkBox1.TabIndex 2;
101:               this.checkBox1.Text "Auto hide task window";
102:               // 
103:               // button1
104:               // 
105:               this.button1.Location new System.Drawing.Point(18472);
106:               this.button1.Name "button1";
107:               this.button1.TabIndex 3;
108:               this.button1.Text "&Save";
109:               // 
110:               // button2
111:               // 
112:               this.button2.Location new System.Drawing.Point(26472);
113:               this.button2.Name "button2";
114:               this.button2.TabIndex 4;
115:               this.button2.Text "Cancel";
116:               // 
117:               // Form3
118:               // 
119:               this.AutoScaleBaseSize new System.Drawing.Size(513);
120:               this.ClientSize new System.Drawing.Size(346103);
121:               this.Controls.AddRange(new System.Windows.Forms.Control[] {
122:                                                                             this.button2,
123:                                                                             this.button1,
124:                                                                             this.checkBox1,
125:                                                                             this.comboBox1,
126:                                                                             this.label1});
127:               this.FormBorderStyle System.Windows.Forms.FormBorderStyle.FixedDialog;
128:               this.Name "Form3";
129:               this.Text "Layout Manager";
130:               Icon null;
131:               this.ResumeLayout(false);
132:  
133:           }
134:           #endregion
135:       }
136:   }
137:  

This page was automatically generated by SharpDevelop.