-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathForm1.Designer.cs
82 lines (75 loc) · 3.11 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
namespace FormsMapCS
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.formsMap1 = new Ptv.XServer.Controls.Map.FormsMap();
this.SuspendLayout();
//
// formsMap1
//
this.formsMap1.Center = ((System.Windows.Point)(resources.GetObject("formsMap1.Center")));
this.formsMap1.Dock = System.Windows.Forms.DockStyle.Fill;
this.formsMap1.FitInWindow = false;
this.formsMap1.InvertMouseWheel = false;
this.formsMap1.Location = new System.Drawing.Point(0, 0);
this.formsMap1.MaxZoom = 19;
this.formsMap1.MinZoom = 0;
this.formsMap1.MouseWheelSpeed = 0.5D;
this.formsMap1.Name = "formsMap1";
this.formsMap1.ShowCoordinates = true;
this.formsMap1.ShowLayers = true;
this.formsMap1.ShowMagnifier = true;
this.formsMap1.ShowNavigation = true;
this.formsMap1.ShowOverview = true;
this.formsMap1.ShowScale = true;
this.formsMap1.ShowZoomSlider = true;
this.formsMap1.Size = new System.Drawing.Size(739, 581);
this.formsMap1.TabIndex = 0;
this.formsMap1.UseAnimation = true;
this.formsMap1.UseDefaultTheme = true;
this.formsMap1.UseMiles = false;
this.formsMap1.XMapCopyright = "Please configure a valid copyright text!";
this.formsMap1.XMapCredentials = "";
this.formsMap1.XMapStyle = "";
this.formsMap1.XMapUrl = "";
this.formsMap1.ZoomLevel = 1D;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(739, 581);
this.Controls.Add(this.formsMap1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private Ptv.XServer.Controls.Map.FormsMap formsMap1;
}
}