97 lines
4.3 KiB
C#
97 lines
4.3 KiB
C#
|
namespace FileWatcher
|
|||
|
{
|
|||
|
partial class FileGroupSettings
|
|||
|
{
|
|||
|
/// <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.components = new System.ComponentModel.Container();
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileGroupSettings));
|
|||
|
this.restartDelayCB = new System.Windows.Forms.CheckBox();
|
|||
|
this.stopScriptCB = new System.Windows.Forms.CheckBox();
|
|||
|
this.relativeScriptCB = new System.Windows.Forms.CheckBox();
|
|||
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// restartDelayCB
|
|||
|
//
|
|||
|
this.restartDelayCB.AutoSize = true;
|
|||
|
this.restartDelayCB.Location = new System.Drawing.Point(12, 233);
|
|||
|
this.restartDelayCB.Name = "restartDelayCB";
|
|||
|
this.restartDelayCB.Size = new System.Drawing.Size(231, 17);
|
|||
|
this.restartDelayCB.TabIndex = 0;
|
|||
|
this.restartDelayCB.Text = "Restart script delay timer when file updated.";
|
|||
|
this.restartDelayCB.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// stopScriptCB
|
|||
|
//
|
|||
|
this.stopScriptCB.AutoSize = true;
|
|||
|
this.stopScriptCB.Location = new System.Drawing.Point(12, 210);
|
|||
|
this.stopScriptCB.Name = "stopScriptCB";
|
|||
|
this.stopScriptCB.Size = new System.Drawing.Size(163, 17);
|
|||
|
this.stopScriptCB.TabIndex = 1;
|
|||
|
this.stopScriptCB.Text = "Stop script when file updated";
|
|||
|
this.stopScriptCB.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// relativeScriptCB
|
|||
|
//
|
|||
|
this.relativeScriptCB.AutoSize = true;
|
|||
|
this.relativeScriptCB.Checked = true;
|
|||
|
this.relativeScriptCB.CheckState = System.Windows.Forms.CheckState.Checked;
|
|||
|
this.relativeScriptCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Strikeout, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.relativeScriptCB.Location = new System.Drawing.Point(12, 187);
|
|||
|
this.relativeScriptCB.Name = "relativeScriptCB";
|
|||
|
this.relativeScriptCB.Size = new System.Drawing.Size(120, 17);
|
|||
|
this.relativeScriptCB.TabIndex = 2;
|
|||
|
this.relativeScriptCB.Text = "Relative Script Path";
|
|||
|
this.relativeScriptCB.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// FileGroupSettings
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(284, 262);
|
|||
|
this.Controls.Add(this.relativeScriptCB);
|
|||
|
this.Controls.Add(this.stopScriptCB);
|
|||
|
this.Controls.Add(this.restartDelayCB);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.Name = "FileGroupSettings";
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.Text = "File Group Settings";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
public System.Windows.Forms.CheckBox restartDelayCB;
|
|||
|
public System.Windows.Forms.CheckBox stopScriptCB;
|
|||
|
public System.Windows.Forms.CheckBox relativeScriptCB;
|
|||
|
private System.Windows.Forms.ToolTip toolTip1;
|
|||
|
}
|
|||
|
}
|