📄 form1.designer.cs
字号:
namespace MapService
{
partial class Form1
{
/// <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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.ss = new System.Windows.Forms.StatusStrip();
this.ssSystem = new System.Windows.Forms.ToolStripStatusLabel();
this.ssZoom = new System.Windows.Forms.ToolStripStatusLabel();
this.ssLonLat = new System.Windows.Forms.ToolStripStatusLabel();
this.ssNodes = new System.Windows.Forms.ToolStripStatusLabel();
this.btnLoad = new System.Windows.Forms.Button();
this.ssRouting = new System.Windows.Forms.ToolStripStatusLabel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.ss.SuspendLayout();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.White;
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(563, 490);
this.pictureBox1.TabIndex = 7;
this.pictureBox1.TabStop = false;
this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
this.pictureBox1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseClick);
//
// ss
//
this.ss.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ssSystem,
this.ssZoom,
this.ssLonLat,
this.ssNodes,
this.ssRouting});
this.ss.Location = new System.Drawing.Point(0, 468);
this.ss.Name = "ss";
this.ss.Size = new System.Drawing.Size(563, 22);
this.ss.TabIndex = 8;
this.ss.Text = "statusStrip1";
//
// ssSystem
//
this.ssSystem.Name = "ssSystem";
this.ssSystem.Size = new System.Drawing.Size(0, 17);
//
// ssZoom
//
this.ssZoom.Name = "ssZoom";
this.ssZoom.Size = new System.Drawing.Size(0, 17);
//
// ssLonLat
//
this.ssLonLat.Name = "ssLonLat";
this.ssLonLat.Size = new System.Drawing.Size(0, 17);
//
// ssNodes
//
this.ssNodes.Name = "ssNodes";
this.ssNodes.Size = new System.Drawing.Size(0, 17);
//
// btnLoad
//
this.btnLoad.Dock = System.Windows.Forms.DockStyle.Top;
this.btnLoad.Location = new System.Drawing.Point(0, 0);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(563, 23);
this.btnLoad.TabIndex = 9;
this.btnLoad.Text = "Refresh map";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
//
// ssRouting
//
this.ssRouting.Name = "ssRouting";
this.ssRouting.Size = new System.Drawing.Size(109, 17);
this.ssRouting.Text = "toolStripStatusLabel1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(563, 490);
this.Controls.Add(this.btnLoad);
this.Controls.Add(this.ss);
this.Controls.Add(this.pictureBox1);
this.Name = "Form1";
this.Text = "Form1";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ss.ResumeLayout(false);
this.ss.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.StatusStrip ss;
private System.Windows.Forms.ToolStripStatusLabel ssLonLat;
private System.Windows.Forms.ToolStripStatusLabel ssZoom;
private System.Windows.Forms.ToolStripStatusLabel ssSystem;
private System.Windows.Forms.ToolStripStatusLabel ssNodes;
private System.Windows.Forms.Button btnLoad;
private System.Windows.Forms.ToolStripStatusLabel ssRouting;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -