1 Star 1 Fork 0

liaryBluce/KMLEditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form1.Designer.cs 7.91 KB
一键复制 编辑 原始数据 按行查看 历史
liaryBluce 提交于 2021-05-18 16:58 . 完成所有基础功能

namespace KMLEditor
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.cb_TowerType = new System.Windows.Forms.ComboBox();
this.btn_Save = new System.Windows.Forms.Button();
this.btn_SaveAs = new System.Windows.Forms.Button();
this.img_Tower = new System.Windows.Forms.PictureBox();
this.dgv_KmlContent = new System.Windows.Forms.DataGridView();
this.btn_ChooicePath = new System.Windows.Forms.Button();
this.pnum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ptype = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pname = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.pcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.fid = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.img_Tower)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dgv_KmlContent)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(24, 69);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 12);
this.label1.TabIndex = 0;
this.label1.Text = "选择杆塔类型:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(24, 32);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 12);
this.label2.TabIndex = 0;
this.label2.Text = "打开航迹文件:";
//
// cb_TowerType
//
this.cb_TowerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_TowerType.FormattingEnabled = true;
this.cb_TowerType.Location = new System.Drawing.Point(110, 66);
this.cb_TowerType.Name = "cb_TowerType";
this.cb_TowerType.Size = new System.Drawing.Size(250, 20);
this.cb_TowerType.TabIndex = 2;
//
// btn_Save
//
this.btn_Save.Location = new System.Drawing.Point(26, 109);
this.btn_Save.Name = "btn_Save";
this.btn_Save.Size = new System.Drawing.Size(75, 23);
this.btn_Save.TabIndex = 3;
this.btn_Save.Text = "保存";
this.btn_Save.UseVisualStyleBackColor = true;
this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
//
// btn_SaveAs
//
this.btn_SaveAs.Location = new System.Drawing.Point(110, 109);
this.btn_SaveAs.Name = "btn_SaveAs";
this.btn_SaveAs.Size = new System.Drawing.Size(75, 23);
this.btn_SaveAs.TabIndex = 3;
this.btn_SaveAs.Text = "另存为";
this.btn_SaveAs.UseVisualStyleBackColor = true;
this.btn_SaveAs.Click += new System.EventHandler(this.btn_SaveAs_Click);
//
// img_Tower
//
this.img_Tower.BackgroundImage = global::KMLEditor.Properties.Resources._default;
this.img_Tower.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.img_Tower.Location = new System.Drawing.Point(379, 27);
this.img_Tower.Name = "img_Tower";
this.img_Tower.Size = new System.Drawing.Size(123, 149);
this.img_Tower.TabIndex = 4;
this.img_Tower.TabStop = false;
//
// dgv_KmlContent
//
this.dgv_KmlContent.AllowUserToAddRows = false;
this.dgv_KmlContent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgv_KmlContent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgv_KmlContent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.pnum,
this.ptype,
this.pname,
this.pcode,
this.fid});
this.dgv_KmlContent.Location = new System.Drawing.Point(26, 195);
this.dgv_KmlContent.Name = "dgv_KmlContent";
this.dgv_KmlContent.RowHeadersVisible = false;
this.dgv_KmlContent.RowTemplate.Height = 23;
this.dgv_KmlContent.Size = new System.Drawing.Size(476, 384);
this.dgv_KmlContent.TabIndex = 5;
this.dgv_KmlContent.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_KmlContent_CellContentClick);
this.dgv_KmlContent.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgv_KmlContent_EditingControlShowing);
//
// btn_ChooicePath
//
this.btn_ChooicePath.Location = new System.Drawing.Point(110, 27);
this.btn_ChooicePath.Name = "btn_ChooicePath";
this.btn_ChooicePath.Size = new System.Drawing.Size(250, 23);
this.btn_ChooicePath.TabIndex = 3;
this.btn_ChooicePath.Text = "选择一个路径";
this.btn_ChooicePath.UseVisualStyleBackColor = true;
this.btn_ChooicePath.Click += new System.EventHandler(this.btn_ChooicePath_Click);
//
// pnum
//
this.pnum.HeaderText = "航点号";
this.pnum.Name = "pnum";
//
// ptype
//
this.ptype.HeaderText = "航点类别";
this.ptype.Name = "ptype";
//
// pname
//
this.pname.HeaderText = "点位名称";
this.pname.Name = "pname";
this.pname.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.pname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
//
// pcode
//
this.pcode.HeaderText = "点位代号";
this.pcode.Name = "pcode";
//
// fid
//
this.fid.HeaderText = "fid";
this.fid.Name = "fid";
this.fid.Visible = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(532, 608);
this.Controls.Add(this.dgv_KmlContent);
this.Controls.Add(this.img_Tower);
this.Controls.Add(this.btn_SaveAs);
this.Controls.Add(this.btn_ChooicePath);
this.Controls.Add(this.btn_Save);
this.Controls.Add(this.cb_TowerType);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "KML Editor";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.img_Tower)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgv_KmlContent)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cb_TowerType;
private System.Windows.Forms.Button btn_Save;
private System.Windows.Forms.Button btn_SaveAs;
private System.Windows.Forms.PictureBox img_Tower;
private System.Windows.Forms.DataGridView dgv_KmlContent;
private System.Windows.Forms.Button btn_ChooicePath;
private System.Windows.Forms.DataGridViewTextBoxColumn pnum;
private System.Windows.Forms.DataGridViewTextBoxColumn ptype;
private System.Windows.Forms.DataGridViewComboBoxColumn pname;
private System.Windows.Forms.DataGridViewTextBoxColumn pcode;
private System.Windows.Forms.DataGridViewTextBoxColumn fid;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liarybluce/kmleditor.git
git@gitee.com:liarybluce/kmleditor.git
liarybluce
kmleditor
KMLEditor
master

搜索帮助