1 Star 0 Fork 2

BLE / 三色墨水屏图片取模

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Form1.Designer.cs 4.03 KB
一键复制 编辑 原始数据 按行查看 历史
梅宝 提交于 2023-04-18 01:10 . 添加项目文件。
namespace img2edp
{
partial class Form1
{
/// <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.openFileBtn = new System.Windows.Forms.Button();
this.button_SavePicture = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// openFileBtn
//
this.openFileBtn.Location = new System.Drawing.Point(26, 19);
this.openFileBtn.Name = "openFileBtn";
this.openFileBtn.Size = new System.Drawing.Size(73, 32);
this.openFileBtn.TabIndex = 0;
this.openFileBtn.Text = "打开文件";
this.openFileBtn.UseVisualStyleBackColor = true;
this.openFileBtn.Click += new System.EventHandler(this.openFileBtn_Click);
//
// button_SavePicture
//
this.button_SavePicture.Enabled = false;
this.button_SavePicture.Location = new System.Drawing.Point(26, 57);
this.button_SavePicture.Name = "button_SavePicture";
this.button_SavePicture.Size = new System.Drawing.Size(73, 32);
this.button_SavePicture.TabIndex = 1;
this.button_SavePicture.Text = "保存C数组";
this.button_SavePicture.UseVisualStyleBackColor = true;
this.button_SavePicture.Click += new System.EventHandler(this.SaveArray_Click);
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.SystemColors.ActiveBorder;
this.pictureBox1.Location = new System.Drawing.Point(26, 104);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(494, 354);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(544, 487);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.button_SavePicture);
this.Controls.Add(this.openFileBtn);
this.Name = "Form1";
this.Text = "图片转数组";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button openFileBtn;
private System.Windows.Forms.Button button_SavePicture;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
}
}
1
https://gitee.com/kingkingking/img2edp.git
git@gitee.com:kingkingking/img2edp.git
kingkingking
img2edp
三色墨水屏图片取模
master

搜索帮助