123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- namespace ISCSIConsole
- {
- partial class SelectVolumeForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectVolumeForm));
- this.btnCancel = new System.Windows.Forms.Button();
- this.btnOK = new System.Windows.Forms.Button();
- this.chkReadOnly = new System.Windows.Forms.CheckBox();
- this.listVolumes = new System.Windows.Forms.ListView();
- this.columnVolume = new System.Windows.Forms.ColumnHeader();
- this.columnName = new System.Windows.Forms.ColumnHeader();
- this.columnType = new System.Windows.Forms.ColumnHeader();
- this.columnStatus = new System.Windows.Forms.ColumnHeader();
- this.columnSize = new System.Windows.Forms.ColumnHeader();
- this.SuspendLayout();
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(405, 191);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 1;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // btnOK
- //
- this.btnOK.Location = new System.Drawing.Point(324, 191);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 2;
- this.btnOK.Text = "OK";
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // chkReadOnly
- //
- this.chkReadOnly.AutoSize = true;
- this.chkReadOnly.Location = new System.Drawing.Point(12, 195);
- this.chkReadOnly.Name = "chkReadOnly";
- this.chkReadOnly.Size = new System.Drawing.Size(76, 17);
- this.chkReadOnly.TabIndex = 3;
- this.chkReadOnly.Text = "Read Only";
- this.chkReadOnly.UseVisualStyleBackColor = true;
- //
- // listVolumes
- //
- this.listVolumes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.columnVolume,
- this.columnName,
- this.columnType,
- this.columnStatus,
- this.columnSize});
- this.listVolumes.FullRowSelect = true;
- this.listVolumes.Location = new System.Drawing.Point(12, 12);
- this.listVolumes.Name = "listVolumes";
- this.listVolumes.Size = new System.Drawing.Size(468, 173);
- this.listVolumes.TabIndex = 4;
- this.listVolumes.UseCompatibleStateImageBehavior = false;
- this.listVolumes.View = System.Windows.Forms.View.Details;
- this.listVolumes.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listPhysicalDisks_ColumnWidthChanging);
- //
- // columnVolume
- //
- this.columnVolume.Text = "Volume";
- //
- // columnName
- //
- this.columnName.Text = "Name";
- this.columnName.Width = 150;
- //
- // columnType
- //
- this.columnType.Text = "Type";
- this.columnType.Width = 134;
- //
- // columnStatus
- //
- this.columnStatus.Text = "Status";
- //
- // columnSize
- //
- this.columnSize.Text = "Size";
- this.columnSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
- //
- // SelectVolumeForm
- //
- this.AcceptButton = this.btnOK;
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(494, 225);
- this.Controls.Add(this.listVolumes);
- this.Controls.Add(this.chkReadOnly);
- this.Controls.Add(this.btnOK);
- this.Controls.Add(this.btnCancel);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MaximumSize = new System.Drawing.Size(500, 250);
- this.MinimumSize = new System.Drawing.Size(500, 250);
- this.Name = "SelectVolumeForm";
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.Text = "Select Volume";
- this.Load += new System.EventHandler(this.SelectPhysicalDiskForm_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.CheckBox chkReadOnly;
- private System.Windows.Forms.ListView listVolumes;
- private System.Windows.Forms.ColumnHeader columnVolume;
- private System.Windows.Forms.ColumnHeader columnName;
- private System.Windows.Forms.ColumnHeader columnType;
- private System.Windows.Forms.ColumnHeader columnStatus;
- private System.Windows.Forms.ColumnHeader columnSize;
- }
- }
|