2 Star 4 Fork 2

codeman35/extractColor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form1.Designer.cs 5.38 KB
一键复制 编辑 原始数据 按行查看 历史
codeman35 提交于 2016-01-05 11:22 +08:00 . no commit message
namespace demo_win_extractColor
{
partial class frmMain
{
/// <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.btnFileSelect = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.btnColor1 = new System.Windows.Forms.Button();
this.btnColor2 = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// btnFileSelect
//
this.btnFileSelect.Location = new System.Drawing.Point(13, 13);
this.btnFileSelect.Name = "btnFileSelect";
this.btnFileSelect.Size = new System.Drawing.Size(149, 23);
this.btnFileSelect.TabIndex = 0;
this.btnFileSelect.Text = "选择图片文件";
this.btnFileSelect.UseVisualStyleBackColor = true;
this.btnFileSelect.Click += new System.EventHandler(this.btnFileSelect_Click);
//
// pictureBox1
//
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.pictureBox1.Location = new System.Drawing.Point(13, 43);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(500, 500);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// btnColor1
//
this.btnColor1.Location = new System.Drawing.Point(532, 12);
this.btnColor1.Name = "btnColor1";
this.btnColor1.Size = new System.Drawing.Size(149, 23);
this.btnColor1.TabIndex = 0;
this.btnColor1.Text = "用第一种方式提取";
this.btnColor1.UseVisualStyleBackColor = true;
this.btnColor1.Click += new System.EventHandler(this.btnColor1_Click);
//
// btnColor2
//
this.btnColor2.Location = new System.Drawing.Point(691, 12);
this.btnColor2.Name = "btnColor2";
this.btnColor2.Size = new System.Drawing.Size(149, 23);
this.btnColor2.TabIndex = 0;
this.btnColor2.Text = "用第二种方式提取";
this.btnColor2.UseVisualStyleBackColor = true;
this.btnColor2.Click += new System.EventHandler(this.btnColor2_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Location = new System.Drawing.Point(533, 43);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(196, 500);
this.panel1.TabIndex = 2;
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Location = new System.Drawing.Point(728, 43);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(196, 500);
this.panel2.TabIndex = 3;
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1071, 602);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.btnColor2);
this.Controls.Add(this.btnColor1);
this.Controls.Add(this.btnFileSelect);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "frmMain";
this.Text = "提取图片的主题色";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnFileSelect;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnColor1;
private System.Windows.Forms.Button btnColor2;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lxwcode/extractColor.git
git@gitee.com:lxwcode/extractColor.git
lxwcode
extractColor
extractColor
master

搜索帮助