placeform.designer.cs
来自「功能:基于windows mobile 的地图查看器。使用vs2005开发」· CS 代码 · 共 178 行
CS
178 行
namespace cfWorldWind
{
partial class PlaceForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.txtSearch = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.lbPlaces = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.btnGo = new System.Windows.Forms.Button();
this.numLat = new System.Windows.Forms.NumericUpDown();
this.numLon = new System.Windows.Forms.NumericUpDown();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtSearch
//
this.txtSearch.Location = new System.Drawing.Point(47, 4);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(130, 21);
this.txtSearch.TabIndex = 0;
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(183, 4);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(54, 20);
this.btnSearch.TabIndex = 1;
this.btnSearch.Text = "Search";
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// lbPlaces
//
this.lbPlaces.Location = new System.Drawing.Point(3, 31);
this.lbPlaces.Name = "lbPlaces";
this.lbPlaces.Size = new System.Drawing.Size(234, 100);
this.lbPlaces.TabIndex = 2;
this.lbPlaces.SelectedIndexChanged += new System.EventHandler(this.lbPlaces_SelectedIndexChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(5, 4);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(40, 20);
this.label1.Text = "name";
//
// label2
//
this.label2.Location = new System.Drawing.Point(5, 138);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(23, 20);
this.label2.Text = "lat";
//
// label3
//
this.label3.Location = new System.Drawing.Point(5, 165);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(23, 20);
this.label3.Text = "lon";
//
// btnGo
//
this.btnGo.Location = new System.Drawing.Point(124, 165);
this.btnGo.Name = "btnGo";
this.btnGo.Size = new System.Drawing.Size(54, 20);
this.btnGo.TabIndex = 9;
this.btnGo.Text = "go";
this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
//
// numLat
//
this.numLat.Location = new System.Drawing.Point(36, 135);
this.numLat.Maximum = new decimal(new int[] {
90,
0,
0,
0});
this.numLat.Minimum = new decimal(new int[] {
90,
0,
0,
-2147483648});
this.numLat.Name = "numLat";
this.numLat.Size = new System.Drawing.Size(82, 22);
this.numLat.TabIndex = 10;
//
// numLon
//
this.numLon.Location = new System.Drawing.Point(36, 163);
this.numLon.Maximum = new decimal(new int[] {
180,
0,
0,
0});
this.numLon.Minimum = new decimal(new int[] {
180,
0,
0,
-2147483648});
this.numLon.Name = "numLon";
this.numLon.Size = new System.Drawing.Size(82, 22);
this.numLon.TabIndex = 11;
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(182, 165);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(54, 20);
this.btnCancel.TabIndex = 12;
this.btnCancel.Text = "cancel";
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// PlaceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.numLon);
this.Controls.Add(this.numLat);
this.Controls.Add(this.btnGo);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.lbPlaces);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.txtSearch);
this.Menu = this.mainMenu1;
this.Name = "PlaceForm";
this.Text = "/cfWorldWind Place";
this.Load += new System.EventHandler(this.PlaceForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtSearch;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.ListBox lbPlaces;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnGo;
private System.Windows.Forms.NumericUpDown numLat;
private System.Windows.Forms.NumericUpDown numLon;
private System.Windows.Forms.Button btnCancel;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?