[6976] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6976] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.Clients.Hive.Administrator.Views {
|
---|
| 23 | partial class SlaveView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.txtSlaveState = new System.Windows.Forms.TextBox();
|
---|
| 48 | this.txtOS = new System.Windows.Forms.TextBox();
|
---|
| 49 | this.label15 = new System.Windows.Forms.Label();
|
---|
| 50 | this.label14 = new System.Windows.Forms.Label();
|
---|
| 51 | this.txtDetailsDescription = new System.Windows.Forms.TextBox();
|
---|
| 52 | this.label13 = new System.Windows.Forms.Label();
|
---|
| 53 | this.txtName = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.txtCPU = new System.Windows.Forms.TextBox();
|
---|
| 55 | this.txtMemory = new System.Windows.Forms.TextBox();
|
---|
| 56 | this.txtLastHeartbeat = new System.Windows.Forms.TextBox();
|
---|
| 57 | this.label12 = new System.Windows.Forms.Label();
|
---|
| 58 | this.label11 = new System.Windows.Forms.Label();
|
---|
| 59 | this.label10 = new System.Windows.Forms.Label();
|
---|
| 60 | this.label9 = new System.Windows.Forms.Label();
|
---|
| 61 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 62 | this.txtFreeMemory = new System.Windows.Forms.TextBox();
|
---|
| 63 | this.txtId = new System.Windows.Forms.TextBox();
|
---|
| 64 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 65 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 66 | this.txtHbIntervall = new System.Windows.Forms.TextBox();
|
---|
[7857] | 67 | this.cbxDisposable = new System.Windows.Forms.CheckBox();
|
---|
| 68 | this.label4 = new System.Windows.Forms.Label();
|
---|
[8051] | 69 | this.cbxPublic = new System.Windows.Forms.CheckBox();
|
---|
| 70 | this.label5 = new System.Windows.Forms.Label();
|
---|
[6976] | 71 | this.SuspendLayout();
|
---|
| 72 | //
|
---|
| 73 | // txtSlaveState
|
---|
| 74 | //
|
---|
[8051] | 75 | this.txtSlaveState.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 77 | this.txtSlaveState.Enabled = false;
|
---|
[8051] | 78 | this.txtSlaveState.Location = new System.Drawing.Point(146, 242);
|
---|
[6976] | 79 | this.txtSlaveState.Name = "txtSlaveState";
|
---|
| 80 | this.txtSlaveState.Size = new System.Drawing.Size(390, 20);
|
---|
| 81 | this.txtSlaveState.TabIndex = 27;
|
---|
| 82 | //
|
---|
| 83 | // txtOS
|
---|
| 84 | //
|
---|
[8051] | 85 | this.txtOS.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 86 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 87 | this.txtOS.Enabled = false;
|
---|
[8051] | 88 | this.txtOS.Location = new System.Drawing.Point(146, 216);
|
---|
[6976] | 89 | this.txtOS.Name = "txtOS";
|
---|
| 90 | this.txtOS.Size = new System.Drawing.Size(390, 20);
|
---|
| 91 | this.txtOS.TabIndex = 26;
|
---|
| 92 | //
|
---|
| 93 | // label15
|
---|
| 94 | //
|
---|
| 95 | this.label15.AutoSize = true;
|
---|
[8051] | 96 | this.label15.Location = new System.Drawing.Point(3, 245);
|
---|
[6976] | 97 | this.label15.Name = "label15";
|
---|
| 98 | this.label15.Size = new System.Drawing.Size(35, 13);
|
---|
| 99 | this.label15.TabIndex = 25;
|
---|
| 100 | this.label15.Text = "State:";
|
---|
| 101 | //
|
---|
| 102 | // label14
|
---|
| 103 | //
|
---|
| 104 | this.label14.AutoSize = true;
|
---|
[8051] | 105 | this.label14.Location = new System.Drawing.Point(3, 219);
|
---|
[6976] | 106 | this.label14.Name = "label14";
|
---|
| 107 | this.label14.Size = new System.Drawing.Size(93, 13);
|
---|
| 108 | this.label14.TabIndex = 24;
|
---|
| 109 | this.label14.Text = "Operating System:";
|
---|
| 110 | //
|
---|
| 111 | // txtDetailsDescription
|
---|
| 112 | //
|
---|
[8051] | 113 | this.txtDetailsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 114 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 115 | this.txtDetailsDescription.Enabled = false;
|
---|
[8051] | 116 | this.txtDetailsDescription.Location = new System.Drawing.Point(146, 112);
|
---|
[6976] | 117 | this.txtDetailsDescription.Name = "txtDetailsDescription";
|
---|
| 118 | this.txtDetailsDescription.Size = new System.Drawing.Size(390, 20);
|
---|
| 119 | this.txtDetailsDescription.TabIndex = 23;
|
---|
| 120 | //
|
---|
| 121 | // label13
|
---|
| 122 | //
|
---|
| 123 | this.label13.AutoSize = true;
|
---|
[8051] | 124 | this.label13.Location = new System.Drawing.Point(3, 115);
|
---|
[6976] | 125 | this.label13.Name = "label13";
|
---|
| 126 | this.label13.Size = new System.Drawing.Size(63, 13);
|
---|
| 127 | this.label13.TabIndex = 22;
|
---|
| 128 | this.label13.Text = "Description:";
|
---|
| 129 | //
|
---|
| 130 | // txtName
|
---|
| 131 | //
|
---|
[8051] | 132 | this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 133 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 134 | this.txtName.Location = new System.Drawing.Point(146, 8);
|
---|
| 135 | this.txtName.Name = "txtName";
|
---|
| 136 | this.txtName.Size = new System.Drawing.Size(390, 20);
|
---|
| 137 | this.txtName.TabIndex = 21;
|
---|
| 138 | this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
|
---|
| 139 | //
|
---|
| 140 | // txtCPU
|
---|
| 141 | //
|
---|
[8051] | 142 | this.txtCPU.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 143 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 144 | this.txtCPU.Enabled = false;
|
---|
[8051] | 145 | this.txtCPU.Location = new System.Drawing.Point(146, 138);
|
---|
[6976] | 146 | this.txtCPU.Name = "txtCPU";
|
---|
| 147 | this.txtCPU.Size = new System.Drawing.Size(390, 20);
|
---|
| 148 | this.txtCPU.TabIndex = 20;
|
---|
| 149 | //
|
---|
| 150 | // txtMemory
|
---|
| 151 | //
|
---|
[8051] | 152 | this.txtMemory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 153 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 154 | this.txtMemory.Enabled = false;
|
---|
[8051] | 155 | this.txtMemory.Location = new System.Drawing.Point(146, 164);
|
---|
[6976] | 156 | this.txtMemory.Name = "txtMemory";
|
---|
| 157 | this.txtMemory.Size = new System.Drawing.Size(390, 20);
|
---|
| 158 | this.txtMemory.TabIndex = 19;
|
---|
| 159 | //
|
---|
| 160 | // txtLastHeartbeat
|
---|
| 161 | //
|
---|
[8051] | 162 | this.txtLastHeartbeat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 163 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 164 | this.txtLastHeartbeat.Enabled = false;
|
---|
[8051] | 165 | this.txtLastHeartbeat.Location = new System.Drawing.Point(146, 268);
|
---|
[6976] | 166 | this.txtLastHeartbeat.Name = "txtLastHeartbeat";
|
---|
| 167 | this.txtLastHeartbeat.Size = new System.Drawing.Size(390, 20);
|
---|
| 168 | this.txtLastHeartbeat.TabIndex = 18;
|
---|
| 169 | //
|
---|
| 170 | // label12
|
---|
| 171 | //
|
---|
| 172 | this.label12.AutoSize = true;
|
---|
[8051] | 173 | this.label12.Location = new System.Drawing.Point(3, 271);
|
---|
[6976] | 174 | this.label12.Name = "label12";
|
---|
| 175 | this.label12.Size = new System.Drawing.Size(80, 13);
|
---|
| 176 | this.label12.TabIndex = 17;
|
---|
| 177 | this.label12.Text = "Last Heartbeat:";
|
---|
| 178 | //
|
---|
| 179 | // label11
|
---|
| 180 | //
|
---|
| 181 | this.label11.AutoSize = true;
|
---|
[8051] | 182 | this.label11.Location = new System.Drawing.Point(3, 167);
|
---|
[6976] | 183 | this.label11.Name = "label11";
|
---|
| 184 | this.label11.Size = new System.Drawing.Size(47, 13);
|
---|
| 185 | this.label11.TabIndex = 16;
|
---|
| 186 | this.label11.Text = "Memory:";
|
---|
| 187 | //
|
---|
| 188 | // label10
|
---|
| 189 | //
|
---|
| 190 | this.label10.AutoSize = true;
|
---|
[8051] | 191 | this.label10.Location = new System.Drawing.Point(3, 141);
|
---|
[6976] | 192 | this.label10.Name = "label10";
|
---|
| 193 | this.label10.Size = new System.Drawing.Size(32, 13);
|
---|
| 194 | this.label10.TabIndex = 15;
|
---|
| 195 | this.label10.Text = "CPU:";
|
---|
| 196 | //
|
---|
| 197 | // label9
|
---|
| 198 | //
|
---|
| 199 | this.label9.AutoSize = true;
|
---|
| 200 | this.label9.Location = new System.Drawing.Point(3, 11);
|
---|
| 201 | this.label9.Name = "label9";
|
---|
| 202 | this.label9.Size = new System.Drawing.Size(38, 13);
|
---|
| 203 | this.label9.TabIndex = 14;
|
---|
| 204 | this.label9.Text = "Name:";
|
---|
| 205 | //
|
---|
| 206 | // label1
|
---|
| 207 | //
|
---|
| 208 | this.label1.AutoSize = true;
|
---|
[8051] | 209 | this.label1.Location = new System.Drawing.Point(3, 193);
|
---|
[6976] | 210 | this.label1.Name = "label1";
|
---|
| 211 | this.label1.Size = new System.Drawing.Size(70, 13);
|
---|
| 212 | this.label1.TabIndex = 28;
|
---|
| 213 | this.label1.Text = "Free memory:";
|
---|
| 214 | //
|
---|
| 215 | // txtFreeMemory
|
---|
| 216 | //
|
---|
[8051] | 217 | this.txtFreeMemory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 218 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 219 | this.txtFreeMemory.Enabled = false;
|
---|
[8051] | 220 | this.txtFreeMemory.Location = new System.Drawing.Point(146, 190);
|
---|
[6976] | 221 | this.txtFreeMemory.Name = "txtFreeMemory";
|
---|
| 222 | this.txtFreeMemory.Size = new System.Drawing.Size(390, 20);
|
---|
| 223 | this.txtFreeMemory.TabIndex = 29;
|
---|
| 224 | //
|
---|
| 225 | // txtId
|
---|
| 226 | //
|
---|
[8051] | 227 | this.txtId.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 228 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 229 | this.txtId.Enabled = false;
|
---|
[8051] | 230 | this.txtId.Location = new System.Drawing.Point(146, 86);
|
---|
[6976] | 231 | this.txtId.Name = "txtId";
|
---|
| 232 | this.txtId.Size = new System.Drawing.Size(390, 20);
|
---|
| 233 | this.txtId.TabIndex = 30;
|
---|
| 234 | //
|
---|
| 235 | // label2
|
---|
| 236 | //
|
---|
| 237 | this.label2.AutoSize = true;
|
---|
[8051] | 238 | this.label2.Location = new System.Drawing.Point(3, 89);
|
---|
[6976] | 239 | this.label2.Name = "label2";
|
---|
| 240 | this.label2.Size = new System.Drawing.Size(19, 13);
|
---|
| 241 | this.label2.TabIndex = 31;
|
---|
| 242 | this.label2.Text = "Id:";
|
---|
| 243 | //
|
---|
| 244 | // label3
|
---|
| 245 | //
|
---|
| 246 | this.label3.AutoSize = true;
|
---|
| 247 | this.label3.Location = new System.Drawing.Point(3, 37);
|
---|
| 248 | this.label3.Name = "label3";
|
---|
| 249 | this.label3.Size = new System.Drawing.Size(137, 13);
|
---|
| 250 | this.label3.TabIndex = 32;
|
---|
| 251 | this.label3.Text = "Heartbeat Intervall (in sec) :";
|
---|
| 252 | //
|
---|
| 253 | // txtHbIntervall
|
---|
| 254 | //
|
---|
[8051] | 255 | this.txtHbIntervall.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7857] | 256 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6976] | 257 | this.txtHbIntervall.Location = new System.Drawing.Point(146, 34);
|
---|
| 258 | this.txtHbIntervall.Name = "txtHbIntervall";
|
---|
| 259 | this.txtHbIntervall.Size = new System.Drawing.Size(390, 20);
|
---|
| 260 | this.txtHbIntervall.TabIndex = 33;
|
---|
| 261 | this.txtHbIntervall.TextChanged += new System.EventHandler(this.txtHbIntervall_TextChanged);
|
---|
| 262 | //
|
---|
[7857] | 263 | // cbxDisposable
|
---|
| 264 | //
|
---|
| 265 | this.cbxDisposable.AutoSize = true;
|
---|
[8051] | 266 | this.cbxDisposable.Enabled = false;
|
---|
| 267 | this.cbxDisposable.Location = new System.Drawing.Point(146, 297);
|
---|
[7857] | 268 | this.cbxDisposable.Name = "cbxDisposable";
|
---|
| 269 | this.cbxDisposable.Size = new System.Drawing.Size(15, 14);
|
---|
| 270 | this.cbxDisposable.TabIndex = 34;
|
---|
| 271 | this.cbxDisposable.UseVisualStyleBackColor = true;
|
---|
[8051] | 272 | this.cbxDisposable.CheckedChanged += new System.EventHandler(this.cbxDisposable_CheckedChanged);
|
---|
[7857] | 273 | //
|
---|
| 274 | // label4
|
---|
| 275 | //
|
---|
| 276 | this.label4.AutoSize = true;
|
---|
[8051] | 277 | this.label4.Location = new System.Drawing.Point(3, 297);
|
---|
[7857] | 278 | this.label4.Name = "label4";
|
---|
| 279 | this.label4.Size = new System.Drawing.Size(62, 13);
|
---|
| 280 | this.label4.TabIndex = 35;
|
---|
| 281 | this.label4.Text = "Disposable:";
|
---|
| 282 | //
|
---|
[8051] | 283 | // cbxPublic
|
---|
| 284 | //
|
---|
| 285 | this.cbxPublic.AutoSize = true;
|
---|
| 286 | this.cbxPublic.Enabled = false;
|
---|
| 287 | this.cbxPublic.Location = new System.Drawing.Point(146, 63);
|
---|
| 288 | this.cbxPublic.Name = "cbxPublic";
|
---|
| 289 | this.cbxPublic.Size = new System.Drawing.Size(15, 14);
|
---|
| 290 | this.cbxPublic.TabIndex = 36;
|
---|
| 291 | this.cbxPublic.UseVisualStyleBackColor = true;
|
---|
| 292 | this.cbxPublic.CheckedChanged += new System.EventHandler(this.cbxPublic_CheckedChanged);
|
---|
| 293 | //
|
---|
| 294 | // label5
|
---|
| 295 | //
|
---|
| 296 | this.label5.AutoSize = true;
|
---|
| 297 | this.label5.Location = new System.Drawing.Point(3, 63);
|
---|
| 298 | this.label5.Name = "label5";
|
---|
| 299 | this.label5.Size = new System.Drawing.Size(39, 13);
|
---|
| 300 | this.label5.TabIndex = 37;
|
---|
| 301 | this.label5.Text = "Public:";
|
---|
| 302 | //
|
---|
[6976] | 303 | // SlaveView
|
---|
| 304 | //
|
---|
| 305 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 306 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[8051] | 307 | this.Controls.Add(this.label5);
|
---|
| 308 | this.Controls.Add(this.cbxPublic);
|
---|
[7857] | 309 | this.Controls.Add(this.label4);
|
---|
| 310 | this.Controls.Add(this.cbxDisposable);
|
---|
[6976] | 311 | this.Controls.Add(this.txtHbIntervall);
|
---|
| 312 | this.Controls.Add(this.label3);
|
---|
| 313 | this.Controls.Add(this.label2);
|
---|
| 314 | this.Controls.Add(this.txtId);
|
---|
| 315 | this.Controls.Add(this.txtFreeMemory);
|
---|
| 316 | this.Controls.Add(this.label1);
|
---|
| 317 | this.Controls.Add(this.txtSlaveState);
|
---|
| 318 | this.Controls.Add(this.txtOS);
|
---|
| 319 | this.Controls.Add(this.label15);
|
---|
| 320 | this.Controls.Add(this.label14);
|
---|
| 321 | this.Controls.Add(this.txtDetailsDescription);
|
---|
| 322 | this.Controls.Add(this.label13);
|
---|
| 323 | this.Controls.Add(this.txtName);
|
---|
| 324 | this.Controls.Add(this.txtCPU);
|
---|
| 325 | this.Controls.Add(this.txtMemory);
|
---|
| 326 | this.Controls.Add(this.txtLastHeartbeat);
|
---|
| 327 | this.Controls.Add(this.label12);
|
---|
| 328 | this.Controls.Add(this.label11);
|
---|
| 329 | this.Controls.Add(this.label10);
|
---|
| 330 | this.Controls.Add(this.label9);
|
---|
| 331 | this.Name = "SlaveView";
|
---|
[8051] | 332 | this.Size = new System.Drawing.Size(539, 407);
|
---|
[6976] | 333 | this.ResumeLayout(false);
|
---|
| 334 | this.PerformLayout();
|
---|
| 335 |
|
---|
| 336 | }
|
---|
| 337 |
|
---|
| 338 | #endregion
|
---|
| 339 |
|
---|
| 340 | private System.Windows.Forms.TextBox txtSlaveState;
|
---|
| 341 | private System.Windows.Forms.TextBox txtOS;
|
---|
| 342 | private System.Windows.Forms.Label label15;
|
---|
| 343 | private System.Windows.Forms.Label label14;
|
---|
| 344 | private System.Windows.Forms.TextBox txtDetailsDescription;
|
---|
| 345 | private System.Windows.Forms.Label label13;
|
---|
| 346 | private System.Windows.Forms.TextBox txtName;
|
---|
| 347 | private System.Windows.Forms.TextBox txtCPU;
|
---|
| 348 | private System.Windows.Forms.TextBox txtMemory;
|
---|
| 349 | private System.Windows.Forms.TextBox txtLastHeartbeat;
|
---|
| 350 | private System.Windows.Forms.Label label12;
|
---|
| 351 | private System.Windows.Forms.Label label11;
|
---|
| 352 | private System.Windows.Forms.Label label10;
|
---|
| 353 | private System.Windows.Forms.Label label9;
|
---|
| 354 | private System.Windows.Forms.Label label1;
|
---|
| 355 | private System.Windows.Forms.TextBox txtFreeMemory;
|
---|
| 356 | private System.Windows.Forms.TextBox txtId;
|
---|
| 357 | private System.Windows.Forms.Label label2;
|
---|
| 358 | private System.Windows.Forms.Label label3;
|
---|
| 359 | private System.Windows.Forms.TextBox txtHbIntervall;
|
---|
[7857] | 360 | private System.Windows.Forms.CheckBox cbxDisposable;
|
---|
| 361 | private System.Windows.Forms.Label label4;
|
---|
[8051] | 362 | private System.Windows.Forms.CheckBox cbxPublic;
|
---|
| 363 | private System.Windows.Forms.Label label5;
|
---|
[6976] | 364 | }
|
---|
| 365 | }
|
---|