108 lines
4.3 KiB
C#
108 lines
4.3 KiB
C#
namespace LibationWinForms.Dialogs
|
|
{
|
|
partial class LibationFilesDialog
|
|
{
|
|
/// <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.libationFilesDescLbl = new System.Windows.Forms.Label();
|
|
this.cancelBtn = new System.Windows.Forms.Button();
|
|
this.saveBtn = new System.Windows.Forms.Button();
|
|
this.libationFilesSelectControl = new LibationWinForms.Dialogs.DirectoryOrCustomSelectControl();
|
|
this.SuspendLayout();
|
|
//
|
|
// libationFilesDescLbl
|
|
//
|
|
this.libationFilesDescLbl.AutoSize = true;
|
|
this.libationFilesDescLbl.Location = new System.Drawing.Point(14, 10);
|
|
this.libationFilesDescLbl.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.libationFilesDescLbl.Name = "libationFilesDescLbl";
|
|
this.libationFilesDescLbl.Size = new System.Drawing.Size(39, 15);
|
|
this.libationFilesDescLbl.TabIndex = 0;
|
|
this.libationFilesDescLbl.Text = "[desc]";
|
|
//
|
|
// cancelBtn
|
|
//
|
|
this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancelBtn.Location = new System.Drawing.Point(832, 118);
|
|
this.cancelBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.cancelBtn.Name = "cancelBtn";
|
|
this.cancelBtn.Size = new System.Drawing.Size(88, 27);
|
|
this.cancelBtn.TabIndex = 3;
|
|
this.cancelBtn.Text = "Cancel";
|
|
this.cancelBtn.UseVisualStyleBackColor = true;
|
|
this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click);
|
|
//
|
|
// saveBtn
|
|
//
|
|
this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.saveBtn.Location = new System.Drawing.Point(714, 118);
|
|
this.saveBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.saveBtn.Name = "saveBtn";
|
|
this.saveBtn.Size = new System.Drawing.Size(88, 27);
|
|
this.saveBtn.TabIndex = 2;
|
|
this.saveBtn.Text = "Save";
|
|
this.saveBtn.UseVisualStyleBackColor = true;
|
|
this.saveBtn.Click += new System.EventHandler(this.saveBtn_Click);
|
|
//
|
|
// libationFilesSelectControl
|
|
//
|
|
this.libationFilesSelectControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.libationFilesSelectControl.Location = new System.Drawing.Point(14, 28);
|
|
this.libationFilesSelectControl.Name = "libationFilesSelectControl";
|
|
this.libationFilesSelectControl.Size = new System.Drawing.Size(909, 81);
|
|
this.libationFilesSelectControl.TabIndex = 1;
|
|
//
|
|
// LibationFilesDialog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(933, 158);
|
|
this.Controls.Add(this.libationFilesSelectControl);
|
|
this.Controls.Add(this.cancelBtn);
|
|
this.Controls.Add(this.saveBtn);
|
|
this.Controls.Add(this.libationFilesDescLbl);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.Name = "LibationFilesDialog";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Libation Files location";
|
|
this.Load += new System.EventHandler(this.LibationFilesDialog_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label libationFilesDescLbl;
|
|
private System.Windows.Forms.Button cancelBtn;
|
|
private System.Windows.Forms.Button saveBtn;
|
|
private DirectoryOrCustomSelectControl libationFilesSelectControl;
|
|
}
|
|
} |