/
tltprog
/
GRAPHICS
Обзор
Документация
Войти
/
tltprog
/
GRAPHICS
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
DisplayPixels/Form1.Designer.cs
156 строк
6 KB
tltrus
up
07 апр 2024, 17:06
07 апр 2024, 17:06
c42f235
Код
Авторство
О чём код?
namespace Read_dispaly_pixels { partial class Form1 { /// <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() { this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.lbX = new System.Windows.Forms.Label(); this.lbY = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.btnStart = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox1.Location = new System.Drawing.Point(31, 41); this.pictureBox1.Margin = new System.Windows.Forms.Padding(2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(74, 63); this.pictureBox1.TabIndex = 1; this.pictureBox1.TabStop = false; // // lbX // this.lbX.AutoSize = true; this.lbX.Location = new System.Drawing.Point(177, 41); this.lbX.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lbX.Name = "lbX"; this.lbX.Size = new System.Drawing.Size(13, 13); this.lbX.TabIndex = 3; this.lbX.Text = "0"; // // lbY // this.lbY.AutoSize = true; this.lbY.Location = new System.Drawing.Point(177, 63); this.lbY.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lbY.Name = "lbY"; this.lbY.Size = new System.Drawing.Size(13, 13); this.lbY.TabIndex = 3; this.lbY.Text = "0"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(11, 9); this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(94, 13); this.label1.TabIndex = 3; this.label1.Text = "Screen pixel color:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(133, 9); this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(81, 13); this.label2.TabIndex = 4; this.label2.Text = "Mouse position:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(156, 41); this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(17, 13); this.label3.TabIndex = 4; this.label3.Text = "X:"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(156, 63); this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(17, 13); this.label4.TabIndex = 4; this.label4.Text = "Y:"; // // btnStart // this.btnStart.Location = new System.Drawing.Point(222, 46); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(84, 29); this.btnStart.TabIndex = 5; this.btnStart.Text = "Start balls"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(327, 129); this.Controls.Add(this.btnStart); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.lbY); this.Controls.Add(this.label1); this.Controls.Add(this.lbX); this.Controls.Add(this.pictureBox1); this.Margin = new System.Windows.Forms.Padding(2); this.Name = "Form1"; this.Text = "Display pixel reading/painting"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed); this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Label lbX; private System.Windows.Forms.Label lbY; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.Button btnStart; } }