AddLayerForm.designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. using FastReport.Controls;
  2. namespace FastReport.Map.Forms
  3. {
  4. partial class AddLayerForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddLayerForm));
  30. this.rbShapefile = new System.Windows.Forms.RadioButton();
  31. this.cbEmbed = new System.Windows.Forms.CheckBox();
  32. this.rbEmptyLayer = new System.Windows.Forms.RadioButton();
  33. this.lblSource = new System.Windows.Forms.Label();
  34. this.tbShapefile = new FastReport.Controls.TextBoxButton();
  35. this.SuspendLayout();
  36. //
  37. // btnOk
  38. //
  39. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  40. this.btnOk.Location = new System.Drawing.Point(317, 184);
  41. //
  42. // btnCancel
  43. //
  44. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  45. this.btnCancel.Location = new System.Drawing.Point(397, 184);
  46. //
  47. // rbShapefile
  48. //
  49. this.rbShapefile.AutoSize = true;
  50. this.rbShapefile.Checked = true;
  51. this.rbShapefile.Location = new System.Drawing.Point(28, 52);
  52. this.rbShapefile.Name = "rbShapefile";
  53. this.rbShapefile.Size = new System.Drawing.Size(105, 17);
  54. this.rbShapefile.TabIndex = 1;
  55. this.rbShapefile.TabStop = true;
  56. this.rbShapefile.Text = "ESRI shapefile";
  57. this.rbShapefile.UseVisualStyleBackColor = true;
  58. this.rbShapefile.CheckedChanged += new System.EventHandler(this.rbShapefile_CheckedChanged);
  59. //
  60. // cbEmbed
  61. //
  62. this.cbEmbed.AutoSize = true;
  63. this.cbEmbed.Checked = true;
  64. this.cbEmbed.CheckState = System.Windows.Forms.CheckState.Checked;
  65. this.cbEmbed.Location = new System.Drawing.Point(48, 108);
  66. this.cbEmbed.Name = "cbEmbed";
  67. this.cbEmbed.Size = new System.Drawing.Size(186, 17);
  68. this.cbEmbed.TabIndex = 2;
  69. this.cbEmbed.Text = "Embed the shapefile in the report";
  70. this.cbEmbed.UseVisualStyleBackColor = true;
  71. //
  72. // rbEmptyLayer
  73. //
  74. this.rbEmptyLayer.AutoSize = true;
  75. this.rbEmptyLayer.Location = new System.Drawing.Point(28, 144);
  76. this.rbEmptyLayer.Name = "rbEmptyLayer";
  77. this.rbEmptyLayer.Size = new System.Drawing.Size(322, 17);
  78. this.rbEmptyLayer.TabIndex = 1;
  79. this.rbEmptyLayer.Text = "Empty layer with geodata provided by an application";
  80. this.rbEmptyLayer.UseVisualStyleBackColor = true;
  81. this.rbEmptyLayer.CheckedChanged += new System.EventHandler(this.rbShapefile_CheckedChanged);
  82. //
  83. // lblSource
  84. //
  85. this.lblSource.AutoSize = true;
  86. this.lblSource.Location = new System.Drawing.Point(12, 20);
  87. this.lblSource.Name = "lblSource";
  88. this.lblSource.Size = new System.Drawing.Size(94, 13);
  89. this.lblSource.TabIndex = 4;
  90. this.lblSource.Text = "Select the source:";
  91. //
  92. // tbShapefile
  93. //
  94. this.tbShapefile.Image = null;
  95. this.tbShapefile.Location = new System.Drawing.Point(48, 76);
  96. this.tbShapefile.Name = "tbShapefile";
  97. this.tbShapefile.Size = new System.Drawing.Size(424, 21);
  98. this.tbShapefile.TabIndex = 6;
  99. this.tbShapefile.ButtonClick += new System.EventHandler(this.tbShapefile_ButtonClick);
  100. //
  101. // AddLayerForm
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  105. this.ClientSize = new System.Drawing.Size(483, 220);
  106. this.Controls.Add(this.rbShapefile);
  107. this.Controls.Add(this.lblSource);
  108. this.Controls.Add(this.cbEmbed);
  109. this.Controls.Add(this.tbShapefile);
  110. this.Controls.Add(this.rbEmptyLayer);
  111. this.Name = "AddLayerForm";
  112. this.Text = "Add layer";
  113. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AddLayerForm_FormClosed);
  114. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AddLayerForm_FormClosing);
  115. this.Controls.SetChildIndex(this.rbEmptyLayer, 0);
  116. this.Controls.SetChildIndex(this.tbShapefile, 0);
  117. this.Controls.SetChildIndex(this.cbEmbed, 0);
  118. this.Controls.SetChildIndex(this.lblSource, 0);
  119. this.Controls.SetChildIndex(this.rbShapefile, 0);
  120. this.Controls.SetChildIndex(this.btnCancel, 0);
  121. this.Controls.SetChildIndex(this.btnOk, 0);
  122. this.ResumeLayout(false);
  123. this.PerformLayout();
  124. }
  125. #endregion
  126. private System.Windows.Forms.RadioButton rbShapefile;
  127. private System.Windows.Forms.CheckBox cbEmbed;
  128. private System.Windows.Forms.RadioButton rbEmptyLayer;
  129. private System.Windows.Forms.Label lblSource;
  130. private FastReport.Controls.TextBoxButton tbShapefile;
  131. }
  132. }