1 Star 0 Fork 1

泡泡大龙王/BitmapPtr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Form1.Designer.cs 5.74 KB
一键复制 编辑 原始数据 按行查看 历史
泡泡大龙王 提交于 2022-04-28 18:48 . 第一次

namespace BitmapPtr
{
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.RtbMsg = new System.Windows.Forms.RichTextBox();
this.BtnOpen = new System.Windows.Forms.Button();
this.TbxFile = new System.Windows.Forms.TextBox();
this.BtnTest = new System.Windows.Forms.Button();
this.PbxSrc = new System.Windows.Forms.PictureBox();
this.PbxDest = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.PbxSrc)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.PbxDest)).BeginInit();
this.SuspendLayout();
//
// RtbMsg
//
this.RtbMsg.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.RtbMsg.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.RtbMsg.Location = new System.Drawing.Point(13, 40);
this.RtbMsg.Name = "RtbMsg";
this.RtbMsg.Size = new System.Drawing.Size(467, 346);
this.RtbMsg.TabIndex = 0;
this.RtbMsg.Text = "";
//
// BtnOpen
//
this.BtnOpen.Location = new System.Drawing.Point(486, 13);
this.BtnOpen.Name = "BtnOpen";
this.BtnOpen.Size = new System.Drawing.Size(102, 39);
this.BtnOpen.TabIndex = 1;
this.BtnOpen.Text = "打开图片文件";
this.BtnOpen.UseVisualStyleBackColor = true;
this.BtnOpen.Click += new System.EventHandler(this.BtnOpen_Click);
//
// TbxFile
//
this.TbxFile.Location = new System.Drawing.Point(12, 13);
this.TbxFile.Name = "TbxFile";
this.TbxFile.Size = new System.Drawing.Size(468, 21);
this.TbxFile.TabIndex = 2;
//
// BtnTest
//
this.BtnTest.Location = new System.Drawing.Point(486, 79);
this.BtnTest.Name = "BtnTest";
this.BtnTest.Size = new System.Drawing.Size(102, 35);
this.BtnTest.TabIndex = 3;
this.BtnTest.Text = "测试";
this.BtnTest.UseVisualStyleBackColor = true;
this.BtnTest.Click += new System.EventHandler(this.BtnTest_Click);
//
// PbxSrc
//
this.PbxSrc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.PbxSrc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.PbxSrc.Location = new System.Drawing.Point(594, 12);
this.PbxSrc.Name = "PbxSrc";
this.PbxSrc.Size = new System.Drawing.Size(398, 174);
this.PbxSrc.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.PbxSrc.TabIndex = 4;
this.PbxSrc.TabStop = false;
//
// PbxDest
//
this.PbxDest.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.PbxDest.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.PbxDest.Location = new System.Drawing.Point(594, 212);
this.PbxDest.Name = "PbxDest";
this.PbxDest.Size = new System.Drawing.Size(398, 174);
this.PbxDest.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.PbxDest.TabIndex = 5;
this.PbxDest.TabStop = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1002, 394);
this.Controls.Add(this.PbxDest);
this.Controls.Add(this.PbxSrc);
this.Controls.Add(this.BtnTest);
this.Controls.Add(this.TbxFile);
this.Controls.Add(this.BtnOpen);
this.Controls.Add(this.RtbMsg);
this.Name = "Form1";
this.Text = "Bitmap指针测试";
((System.ComponentModel.ISupportInitialize)(this.PbxSrc)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.PbxDest)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox RtbMsg;
private System.Windows.Forms.Button BtnOpen;
private System.Windows.Forms.TextBox TbxFile;
private System.Windows.Forms.Button BtnTest;
private System.Windows.Forms.PictureBox PbxSrc;
private System.Windows.Forms.PictureBox PbxDest;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/Charltsing/bitmap-ptr.git
git@gitee.com:Charltsing/bitmap-ptr.git
Charltsing
bitmap-ptr
BitmapPtr
master

搜索帮助