📄 selectionlayereditorform.designer.cs
字号:
namespace SelectToolTask
{
partial class SelectionLayerEditorForm
{
/// <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.rbnAllowAllLayers = new System.Windows.Forms.RadioButton();
this.rbnSpecifySelectionLayers = new System.Windows.Forms.RadioButton();
this.clbAvailableLayers = new System.Windows.Forms.CheckedListBox();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lblError = new System.Windows.Forms.Label();
this.lblErrorServices = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// rbnAllowAllLayers
//
this.rbnAllowAllLayers.AutoSize = true;
this.rbnAllowAllLayers.Checked = true;
this.rbnAllowAllLayers.Location = new System.Drawing.Point(12, 13);
this.rbnAllowAllLayers.Name = "rbnAllowAllLayers";
this.rbnAllowAllLayers.Size = new System.Drawing.Size(233, 17);
this.rbnAllowAllLayers.TabIndex = 0;
this.rbnAllowAllLayers.TabStop = true;
this.rbnAllowAllLayers.Text = "Allow user to select from any queryable layer";
this.rbnAllowAllLayers.UseVisualStyleBackColor = true;
//
// rbnSpecifySelectionLayers
//
this.rbnSpecifySelectionLayers.AutoSize = true;
this.rbnSpecifySelectionLayers.Location = new System.Drawing.Point(12, 36);
this.rbnSpecifySelectionLayers.Name = "rbnSpecifySelectionLayers";
this.rbnSpecifySelectionLayers.Size = new System.Drawing.Size(141, 17);
this.rbnSpecifySelectionLayers.TabIndex = 1;
this.rbnSpecifySelectionLayers.TabStop = true;
this.rbnSpecifySelectionLayers.Text = "Specify selectable layers";
this.rbnSpecifySelectionLayers.UseVisualStyleBackColor = true;
this.rbnSpecifySelectionLayers.CheckedChanged += new System.EventHandler(this.rbnSpecifySelectionLayers_CheckedChanged);
//
// clbAvailableLayers
//
this.clbAvailableLayers.CheckOnClick = true;
this.clbAvailableLayers.Enabled = false;
this.clbAvailableLayers.FormattingEnabled = true;
this.clbAvailableLayers.Location = new System.Drawing.Point(33, 59);
this.clbAvailableLayers.Name = "clbAvailableLayers";
this.clbAvailableLayers.Size = new System.Drawing.Size(247, 139);
this.clbAvailableLayers.TabIndex = 2;
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(14, 232);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 23);
this.btnOk.TabIndex = 3;
this.btnOk.Text = "OK";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(107, 232);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// lblError
//
this.lblError.AutoSize = true;
this.lblError.ForeColor = System.Drawing.Color.Red;
this.lblError.Location = new System.Drawing.Point(33, 201);
this.lblError.Name = "lblError";
this.lblError.Size = new System.Drawing.Size(241, 13);
this.lblError.TabIndex = 5;
this.lblError.Text = "Error retrieving layers from service (check status): ";
this.lblError.Visible = false;
//
// lblErrorServices
//
this.lblErrorServices.AutoSize = true;
this.lblErrorServices.ForeColor = System.Drawing.Color.Red;
this.lblErrorServices.Location = new System.Drawing.Point(54, 216);
this.lblErrorServices.Name = "lblErrorServices";
this.lblErrorServices.Size = new System.Drawing.Size(156, 13);
this.lblErrorServices.TabIndex = 6;
this.lblErrorServices.Text = "(Services with errors listed here)";
this.lblErrorServices.Visible = false;
//
// SelectionLayerEditorForm
//
this.AcceptButton = this.btnOk;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(292, 265);
this.Controls.Add(this.lblErrorServices);
this.Controls.Add(this.lblError);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.clbAvailableLayers);
this.Controls.Add(this.rbnSpecifySelectionLayers);
this.Controls.Add(this.rbnAllowAllLayers);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SelectionLayerEditorForm";
this.ShowIcon = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Selectable layers";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton rbnAllowAllLayers;
private System.Windows.Forms.RadioButton rbnSpecifySelectionLayers;
private System.Windows.Forms.CheckedListBox clbAvailableLayers;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblError;
private System.Windows.Forms.Label lblErrorServices;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -