Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TypeEditorForm.cs « Gui « src « doctools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fa9784276e093d1164388883eb4c16e996e9408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// TypeEditorForm.cs
// John Barnette (jbarn@httcb.net)
// 
// Copyright (c) 2002 John Barnette
//
// This file is part of Monodoc, a multilingual API documentation tool.
//
// Monodoc is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// 
// Monodoc is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with Monodoc; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

using System;

namespace Mono.Doc.Gui
{
	public class TypeEditorForm : GenericEditorForm
	{
		private System.Windows.Forms.Label labelMembers;
		private System.Windows.Forms.ComboBox comboBoxMembers;

		private void InitializeComponent()
		{
			this.labelMembers = new System.Windows.Forms.Label();
			this.comboBoxMembers = new System.Windows.Forms.ComboBox();
			this.SuspendLayout();
			// 
			// toolBar
			// 
			//this.toolBar.ButtonSize = new System.Drawing.Size(43, 22);
			this.toolBar.Visible = true;
			// 
			// labelSummary
			// 
			this.labelSummary.Visible = true;
			// 
			// textBoxSummary
			// 
			this.textBoxSummary.Visible = true;
			// 
			// labelRemarks
			// 
			this.labelRemarks.Visible = true;
			// 
			// textBoxRemarks
			// 
			this.textBoxRemarks.Visible = true;
			// 
			// labelSeeAlso
			// 
			this.labelSeeAlso.Visible = true;
			// 
			// comboBoxLanguage
			// 
			this.comboBoxLanguage.ItemHeight = 13;
			this.comboBoxLanguage.Visible = true;
			// 
			// labelLanguage
			// 
			this.labelLanguage.Location = new System.Drawing.Point(232, 34);
			this.labelLanguage.Size = new System.Drawing.Size(72, 16);
			this.labelLanguage.Visible = true;
			// 
			// listView1
			// 
			this.listViewSeeAlso.Visible = true;
			// 
			// labelMembers
			// 
			this.labelMembers.Location = new System.Drawing.Point(8, 34);
			this.labelMembers.Name = "labelMembers";
			this.labelMembers.Size = new System.Drawing.Size(56, 16);
			this.labelMembers.TabIndex = 10;
			this.labelMembers.Text = "Members:";
			// 
			// comboBoxMembers
			// 
			this.comboBoxMembers.Location = new System.Drawing.Point(64, 32);
			this.comboBoxMembers.Name = "comboBoxMembers";
			this.comboBoxMembers.Size = new System.Drawing.Size(168, 21);
			this.comboBoxMembers.TabIndex = 11;
			this.comboBoxMembers.Text = "comboBox1";
			// 
			// TypeEditorForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(432, 469);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.listViewSeeAlso,
																		  this.labelLanguage,
																		  this.comboBoxLanguage,
																		  this.labelSeeAlso,
																		  this.textBoxRemarks,
																		  this.labelRemarks,
																		  this.textBoxSummary,
																		  this.labelSummary,
																		  this.toolBar,
																		  this.comboBoxMembers,
																		  this.labelMembers});
			this.Name = "TypeEditorForm";
			this.Text = "TypeEditorForm";
			this.ResumeLayout(false);

		}
	
		public TypeEditorForm() : base()
		{
			InitializeComponent();
		}
	}
}