📄 picwinusb.designer.cs
字号:
namespace PicWinUSB
{
partial class PicWinUSB
{
/// <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(PicWinUSB));
this.led = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.adc = new System.Windows.Forms.Button();
this.adcBar = new System.Windows.Forms.ProgressBar();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// led
//
this.led.Location = new System.Drawing.Point(12, 120);
this.led.Name = "led";
this.led.Size = new System.Drawing.Size(75, 23);
this.led.TabIndex = 0;
this.led.Text = "Toggle LED";
this.led.UseVisualStyleBackColor = true;
this.led.Click += new System.EventHandler(this.led_Click);
//
// pictureBox1
//
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(12, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(200, 102);
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// adc
//
this.adc.Location = new System.Drawing.Point(12, 149);
this.adc.Name = "adc";
this.adc.Size = new System.Drawing.Size(75, 23);
this.adc.TabIndex = 3;
this.adc.Text = "Read ADC";
this.adc.UseVisualStyleBackColor = true;
this.adc.Click += new System.EventHandler(this.adc_Click);
//
// adcBar
//
this.adcBar.Location = new System.Drawing.Point(93, 149);
this.adcBar.Name = "adcBar";
this.adcBar.Size = new System.Drawing.Size(119, 23);
this.adcBar.TabIndex = 4;
//
// PicWinUSB
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(223, 183);
this.Controls.Add(this.adcBar);
this.Controls.Add(this.adc);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.led);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "PicWinUSB";
this.Text = "PicWinUSB";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button led;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button adc;
private System.Windows.Forms.ProgressBar adcBar;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -