Develop and Download Open Source Software

Browse Subversion Repository

Contents of /UT3 Server Launcher/FormProfile.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download)
Mon Jun 15 12:38:17 2009 UTC (14 years, 9 months ago) by piglet
File size: 6721 byte(s)
日本語に対応
ツールストラップの位置が保存されないバグを修正

1 namespace UT3_Server_Launcher
2 {
3 partial class FormProfile
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProfile));
32 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
33 this.lstVwProfile = new System.Windows.Forms.ListView();
34 this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
35 this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
36 this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
37 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
38 this.btnCancel = new System.Windows.Forms.Button();
39 this.btnOK = new System.Windows.Forms.Button();
40 this.tableLayoutPanel1.SuspendLayout();
41 this.tableLayoutPanel2.SuspendLayout();
42 this.SuspendLayout();
43 //
44 // tableLayoutPanel1
45 //
46 this.tableLayoutPanel1.AccessibleDescription = null;
47 this.tableLayoutPanel1.AccessibleName = null;
48 resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
49 this.tableLayoutPanel1.BackgroundImage = null;
50 this.tableLayoutPanel1.Controls.Add(this.lstVwProfile, 0, 0);
51 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
52 this.tableLayoutPanel1.Font = null;
53 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
54 //
55 // lstVwProfile
56 //
57 this.lstVwProfile.AccessibleDescription = null;
58 this.lstVwProfile.AccessibleName = null;
59 resources.ApplyResources(this.lstVwProfile, "lstVwProfile");
60 this.lstVwProfile.BackgroundImage = null;
61 this.lstVwProfile.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
62 this.columnHeader1,
63 this.columnHeader2,
64 this.columnHeader3});
65 this.lstVwProfile.Font = null;
66 this.lstVwProfile.FullRowSelect = true;
67 this.lstVwProfile.GridLines = true;
68 this.lstVwProfile.MultiSelect = false;
69 this.lstVwProfile.Name = "lstVwProfile";
70 this.lstVwProfile.Scrollable = false;
71 this.lstVwProfile.UseCompatibleStateImageBehavior = false;
72 this.lstVwProfile.View = System.Windows.Forms.View.Details;
73 //
74 // columnHeader1
75 //
76 resources.ApplyResources(this.columnHeader1, "columnHeader1");
77 //
78 // columnHeader2
79 //
80 resources.ApplyResources(this.columnHeader2, "columnHeader2");
81 //
82 // columnHeader3
83 //
84 resources.ApplyResources(this.columnHeader3, "columnHeader3");
85 //
86 // tableLayoutPanel2
87 //
88 this.tableLayoutPanel2.AccessibleDescription = null;
89 this.tableLayoutPanel2.AccessibleName = null;
90 resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
91 this.tableLayoutPanel2.BackgroundImage = null;
92 this.tableLayoutPanel2.Controls.Add(this.btnCancel, 4, 0);
93 this.tableLayoutPanel2.Controls.Add(this.btnOK, 3, 0);
94 this.tableLayoutPanel2.Font = null;
95 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
96 //
97 // btnCancel
98 //
99 this.btnCancel.AccessibleDescription = null;
100 this.btnCancel.AccessibleName = null;
101 resources.ApplyResources(this.btnCancel, "btnCancel");
102 this.btnCancel.BackgroundImage = null;
103 this.btnCancel.Font = null;
104 this.btnCancel.Name = "btnCancel";
105 this.btnCancel.UseVisualStyleBackColor = true;
106 this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
107 //
108 // btnOK
109 //
110 this.btnOK.AccessibleDescription = null;
111 this.btnOK.AccessibleName = null;
112 resources.ApplyResources(this.btnOK, "btnOK");
113 this.btnOK.BackgroundImage = null;
114 this.btnOK.Font = null;
115 this.btnOK.Name = "btnOK";
116 this.btnOK.UseVisualStyleBackColor = true;
117 this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
118 //
119 // FormProfile
120 //
121 this.AccessibleDescription = null;
122 this.AccessibleName = null;
123 resources.ApplyResources(this, "$this");
124 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
125 this.BackgroundImage = null;
126 this.Controls.Add(this.tableLayoutPanel1);
127 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
128 this.Icon = null;
129 this.Name = "FormProfile";
130 this.Load += new System.EventHandler(this.FormProfile_Load);
131 this.tableLayoutPanel1.ResumeLayout(false);
132 this.tableLayoutPanel2.ResumeLayout(false);
133 this.ResumeLayout(false);
134
135 }
136
137 #endregion
138
139 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
140 private System.Windows.Forms.ListView lstVwProfile;
141 private System.Windows.Forms.ColumnHeader columnHeader1;
142 private System.Windows.Forms.ColumnHeader columnHeader2;
143 private System.Windows.Forms.ColumnHeader columnHeader3;
144 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
145 private System.Windows.Forms.Button btnOK;
146 private System.Windows.Forms.Button btnCancel;
147 }
148 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26