📄 addpicture.designer.cs
字号:
namespace AddEditDeleteDataGridView
{
partial class AddPicture
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.ShowPicBox = new System.Windows.Forms.PictureBox();
this.ShowDialogCmd = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.PicNameTxt = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ShowPicBox)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.groupBox2);
this.groupBox1.Controls.Add(this.ShowDialogCmd);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.PicNameTxt);
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Location = new System.Drawing.Point(12, 21);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(337, 347);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "选择图片";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.ShowPicBox);
this.groupBox2.Location = new System.Drawing.Point(6, 69);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(281, 236);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "预览图像";
//
// ShowPicBox
//
this.ShowPicBox.Location = new System.Drawing.Point(4, 20);
this.ShowPicBox.Name = "ShowPicBox";
this.ShowPicBox.Size = new System.Drawing.Size(271, 208);
this.ShowPicBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.ShowPicBox.TabIndex = 3;
this.ShowPicBox.TabStop = false;
//
// ShowDialogCmd
//
this.ShowDialogCmd.Location = new System.Drawing.Point(254, 43);
this.ShowDialogCmd.Name = "ShowDialogCmd";
this.ShowDialogCmd.Size = new System.Drawing.Size(33, 21);
this.ShowDialogCmd.TabIndex = 5;
this.ShowDialogCmd.Text = "...";
this.ShowDialogCmd.UseVisualStyleBackColor = true;
this.ShowDialogCmd.Click += new System.EventHandler(this.ShowDialogCmd_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(125, 12);
this.label1.TabIndex = 4;
this.label1.Text = "设置上传图片的路径:";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// PicNameTxt
//
this.PicNameTxt.Location = new System.Drawing.Point(24, 43);
this.PicNameTxt.Name = "PicNameTxt";
this.PicNameTxt.Size = new System.Drawing.Size(224, 21);
this.PicNameTxt.TabIndex = 3;
//
// button1
//
this.button1.Location = new System.Drawing.Point(253, 311);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 1;
this.button1.Text = "确定";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// AddPicture
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(375, 387);
this.Controls.Add(this.groupBox1);
this.Name = "AddPicture";
this.Text = "AddPicture";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.ShowPicBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button ShowDialogCmd;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox PicNameTxt;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.PictureBox ShowPicBox;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -