基本信息
源码名称:C# 自定义 NoteBook - 记事本源码下载
源码大小:0.20M
文件格式:.rar
开发语言:C#
更新时间:2015-11-20
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元×
微信扫码支付:3 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
namespace NoteBook { partial class frmSearch { /// <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.txtContent = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.btnSearch = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // txtContent // this.txtContent.Location = new System.Drawing.Point(93, 9); this.txtContent.Name = "txtContent"; this.txtContent.Size = new System.Drawing.Size(171, 21); this.txtContent.TabIndex = 0; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(22, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(65, 12); this.label1.TabIndex = 1; this.label1.Text = "查找内容:"; // // btnSearch // this.btnSearch.Location = new System.Drawing.Point(63, 39); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(75, 23); this.btnSearch.TabIndex = 2; this.btnSearch.Text = "查找下一个"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click = new System.EventHandler(this.btnSearch_Click); // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(144, 39); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 3; this.btnCancel.Text = "取消"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click = new System.EventHandler(this.btnCancel_Click); // // frmSearch // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(281, 72); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label1); this.Controls.Add(this.txtContent); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmSearch"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "查找"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtContent; private System.Windows.Forms.Label label1; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.Button btnCancel; } }