123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- namespace NetworkDiscovery
- {
- partial class Form_Main
- {
- /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- this.dataGridView = new System.Windows.Forms.DataGridView();
- this.panel = new System.Windows.Forms.Panel();
- this.progressBar = new System.Windows.Forms.ProgressBar();
- this.Button_About = new System.Windows.Forms.Button();
- this.label = new System.Windows.Forms.Label();
- this.Button_Start = new System.Windows.Forms.Button();
- this.Column_SN = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column_IP = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column_MAC = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column_Model = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column_Firmware = new System.Windows.Forms.DataGridViewTextBoxColumn();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
- this.panel.SuspendLayout();
- this.SuspendLayout();
- //
- // dataGridView
- //
- this.dataGridView.AllowUserToAddRows = false;
- this.dataGridView.AllowUserToResizeColumns = false;
- this.dataGridView.AllowUserToResizeRows = false;
- this.dataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
- dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle1.BackColor = System.Drawing.Color.Blue;
- dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
- this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column_SN,
- this.Column_IP,
- this.Column_MAC,
- this.Column_Model,
- this.Column_Firmware});
- this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridView.GridColor = System.Drawing.Color.Black;
- this.dataGridView.Location = new System.Drawing.Point(0, 0);
- this.dataGridView.MultiSelect = false;
- this.dataGridView.Name = "dataGridView";
- this.dataGridView.RowHeadersVisible = false;
- this.dataGridView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dataGridView.Size = new System.Drawing.Size(635, 468);
- this.dataGridView.TabIndex = 0;
- this.dataGridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellDoubleClick);
- //
- // panel
- //
- this.panel.Controls.Add(this.progressBar);
- this.panel.Controls.Add(this.Button_About);
- this.panel.Controls.Add(this.label);
- this.panel.Controls.Add(this.Button_Start);
- this.panel.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel.Location = new System.Drawing.Point(0, 418);
- this.panel.Name = "panel";
- this.panel.Size = new System.Drawing.Size(635, 50);
- this.panel.TabIndex = 1;
- //
- // progressBar
- //
- this.progressBar.Enabled = false;
- this.progressBar.Location = new System.Drawing.Point(93, 15);
- this.progressBar.Name = "progressBar";
- this.progressBar.Size = new System.Drawing.Size(100, 23);
- this.progressBar.TabIndex = 4;
- //
- // Button_About
- //
- this.Button_About.Location = new System.Drawing.Point(524, 15);
- this.Button_About.Name = "Button_About";
- this.Button_About.Size = new System.Drawing.Size(99, 23);
- this.Button_About.TabIndex = 3;
- this.Button_About.Text = "О программе";
- this.Button_About.UseVisualStyleBackColor = true;
- this.Button_About.Click += new System.EventHandler(this.Button_About_Click);
- //
- // label
- //
- this.label.AutoSize = true;
- this.label.Location = new System.Drawing.Point(199, 20);
- this.label.Name = "label";
- this.label.Size = new System.Drawing.Size(0, 13);
- this.label.TabIndex = 1;
- this.label.Visible = false;
- //
- // Button_Start
- //
- this.Button_Start.Location = new System.Drawing.Point(12, 15);
- this.Button_Start.Name = "Button_Start";
- this.Button_Start.Size = new System.Drawing.Size(75, 23);
- this.Button_Start.TabIndex = 0;
- this.Button_Start.Text = "Пуск";
- this.Button_Start.UseVisualStyleBackColor = true;
- this.Button_Start.Click += new System.EventHandler(this.Button_Start_Click);
- //
- // Column_SN
- //
- this.Column_SN.HeaderText = "Серийный номер";
- this.Column_SN.Name = "Column_SN";
- this.Column_SN.ReadOnly = true;
- this.Column_SN.Width = 150;
- //
- // Column_IP
- //
- this.Column_IP.HeaderText = "IP-адрес";
- this.Column_IP.Name = "Column_IP";
- this.Column_IP.ReadOnly = true;
- this.Column_IP.Width = 90;
- //
- // Column_MAC
- //
- this.Column_MAC.HeaderText = "MAC-адрес";
- this.Column_MAC.Name = "Column_MAC";
- this.Column_MAC.ReadOnly = true;
- this.Column_MAC.Width = 110;
- //
- // Column_Model
- //
- this.Column_Model.HeaderText = "Модель";
- this.Column_Model.Name = "Column_Model";
- this.Column_Model.ReadOnly = true;
- this.Column_Model.Width = 130;
- //
- // Column_Firmware
- //
- this.Column_Firmware.HeaderText = "Версия ПО";
- this.Column_Firmware.Name = "Column_Firmware";
- this.Column_Firmware.ReadOnly = true;
- this.Column_Firmware.Width = 150;
- //
- // Form_Main
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(635, 468);
- this.Controls.Add(this.panel);
- this.Controls.Add(this.dataGridView);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
- this.Icon = global::NetworkDiscovery.Properties.Resources.icon;
- this.Name = "Form_Main";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Network Discovery (ROTEK)";
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
- this.panel.ResumeLayout(false);
- this.panel.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.DataGridView dataGridView;
- private System.Windows.Forms.Panel panel;
- private System.Windows.Forms.Button Button_Start;
- private System.Windows.Forms.Button Button_About;
- private System.Windows.Forms.Label label;
- private System.Windows.Forms.ProgressBar progressBar;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_SN;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_IP;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_MAC;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_Model;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_Firmware;
- }
- }
|