Fixed issue where the top box of the dialog was not displaying the “&” character used in the RO Path
111 lines
4.1 KiB
C#
111 lines
4.1 KiB
C#
namespace VEPROMS
|
|
{
|
|
partial class dlgPickROFolder
|
|
{
|
|
/// <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.lblImportRO = new System.Windows.Forms.Label();
|
|
this.clbLocalROFolders = new System.Windows.Forms.CheckedListBox();
|
|
this.btnOkay = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblImportRO
|
|
//
|
|
this.lblImportRO.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.lblImportRO.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.lblImportRO.Location = new System.Drawing.Point(8, 8);
|
|
this.lblImportRO.Margin = new System.Windows.Forms.Padding(8);
|
|
this.lblImportRO.Name = "lblImportRO";
|
|
this.lblImportRO.Size = new System.Drawing.Size(520, 120);
|
|
this.lblImportRO.TabIndex = 0;
|
|
this.lblImportRO.Text = "label1";
|
|
this.lblImportRO.UseMnemonic = false;
|
|
//
|
|
// clbLocalROFolders
|
|
//
|
|
this.clbLocalROFolders.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.clbLocalROFolders.FormattingEnabled = true;
|
|
this.clbLocalROFolders.Location = new System.Drawing.Point(8, 128);
|
|
this.clbLocalROFolders.Name = "clbLocalROFolders";
|
|
this.clbLocalROFolders.Size = new System.Drawing.Size(520, 124);
|
|
this.clbLocalROFolders.TabIndex = 2;
|
|
this.clbLocalROFolders.SelectedIndexChanged += new System.EventHandler(this.clbLocalROFolders_SelectedIndexChanged);
|
|
//
|
|
// btnOkay
|
|
//
|
|
this.btnOkay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOkay.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOkay.Enabled = false;
|
|
this.btnOkay.Location = new System.Drawing.Point(372, 260);
|
|
this.btnOkay.Name = "btnOkay";
|
|
this.btnOkay.Size = new System.Drawing.Size(75, 32);
|
|
this.btnOkay.TabIndex = 3;
|
|
this.btnOkay.Text = "OK";
|
|
this.btnOkay.UseVisualStyleBackColor = true;
|
|
this.btnOkay.Click += new System.EventHandler(this.btnOkay_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(453, 260);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 32);
|
|
this.btnCancel.TabIndex = 4;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// dlgPickROFolder
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(536, 295);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOkay);
|
|
this.Controls.Add(this.clbLocalROFolders);
|
|
this.Controls.Add(this.lblImportRO);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "dlgPickROFolder";
|
|
this.Padding = new System.Windows.Forms.Padding(8);
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Pick RO Folder";
|
|
this.Load += new System.EventHandler(this.dlgPickROFolder_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblImportRO;
|
|
private System.Windows.Forms.CheckedListBox clbLocalROFolders;
|
|
private System.Windows.Forms.Button btnOkay;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
}
|
|
} |