加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FrmMessageShow.Designer.cs 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
baishaowei 提交于 2018-08-07 14:33 . 初始版本:v1.0
namespace WorldGIS
{
partial class FrmMessageShow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textBoxErrorMessage = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// textBoxErrorMessage
//
this.textBoxErrorMessage.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxErrorMessage.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBoxErrorMessage.Location = new System.Drawing.Point(0, 0);
this.textBoxErrorMessage.Multiline = true;
this.textBoxErrorMessage.Name = "textBoxErrorMessage";
this.textBoxErrorMessage.ReadOnly = true;
this.textBoxErrorMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxErrorMessage.Size = new System.Drawing.Size(409, 262);
this.textBoxErrorMessage.TabIndex = 0;
//
// FrmErrorMessageShow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(409, 262);
this.Controls.Add(this.textBoxErrorMessage);
this.Name = "FrmErrorMessageShow";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "提示信息";
this.Load += new System.EventHandler(this.FrmErrorMessageShow_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBoxErrorMessage;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化