OpenLiveWriter/utilities/BlogRunner/BlogRunnerGui/Form1.Designer.cs

231 lines
12 KiB
C#

namespace BlogRunnerGui
{
partial class Form1
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnSelectNone = new System.Windows.Forms.Button();
this.btnSelectAll = new System.Windows.Forms.Button();
this.listProviders = new System.Windows.Forms.CheckedListBox();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnRun = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.chkVerbose = new System.Windows.Forms.CheckBox();
this.fileOutput = new BlogRunnerGui.FileInput();
this.fileConfig = new BlogRunnerGui.FileInput();
this.fileBlogProviders = new BlogRunnerGui.FileInput();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.btnSelectNone);
this.groupBox1.Controls.Add(this.btnSelectAll);
this.groupBox1.Controls.Add(this.listProviders);
this.groupBox1.Location = new System.Drawing.Point(12, 139);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(439, 179);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Providers";
//
// btnSelectNone
//
this.btnSelectNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSelectNone.Location = new System.Drawing.Point(87, 149);
this.btnSelectNone.Name = "btnSelectNone";
this.btnSelectNone.Size = new System.Drawing.Size(75, 23);
this.btnSelectNone.TabIndex = 2;
this.btnSelectNone.Text = "Select &None";
this.btnSelectNone.UseVisualStyleBackColor = true;
this.btnSelectNone.Click += new System.EventHandler(this.btnSelectNone_Click);
//
// btnSelectAll
//
this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSelectAll.Location = new System.Drawing.Point(6, 149);
this.btnSelectAll.Name = "btnSelectAll";
this.btnSelectAll.Size = new System.Drawing.Size(75, 23);
this.btnSelectAll.TabIndex = 1;
this.btnSelectAll.Text = "Select &All";
this.btnSelectAll.UseVisualStyleBackColor = true;
this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
//
// listProviders
//
this.listProviders.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listProviders.CheckOnClick = true;
this.listProviders.FormattingEnabled = true;
this.listProviders.Location = new System.Drawing.Point(6, 19);
this.listProviders.Name = "listProviders";
this.listProviders.Size = new System.Drawing.Size(427, 124);
this.listProviders.TabIndex = 0;
this.listProviders.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.listProviders_ItemCheck);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 326);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 13);
this.label1.TabIndex = 4;
this.label1.Text = "Command Line";
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Location = new System.Drawing.Point(12, 342);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox1.Size = new System.Drawing.Size(439, 67);
this.textBox1.TabIndex = 5;
//
// btnRun
//
this.btnRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnRun.Location = new System.Drawing.Point(295, 441);
this.btnRun.Name = "btnRun";
this.btnRun.Size = new System.Drawing.Size(75, 23);
this.btnRun.TabIndex = 8;
this.btnRun.Text = "&Run";
this.btnRun.UseVisualStyleBackColor = true;
this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(376, 441);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 9;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// chkVerbose
//
this.chkVerbose.AutoSize = true;
this.chkVerbose.Location = new System.Drawing.Point(12, 445);
this.chkVerbose.Name = "chkVerbose";
this.chkVerbose.Size = new System.Drawing.Size(137, 17);
this.chkVerbose.TabIndex = 7;
this.chkVerbose.Text = "Enable &verbose logging";
this.chkVerbose.UseVisualStyleBackColor = true;
this.chkVerbose.CheckedChanged += new System.EventHandler(this.chkVerbose_CheckedChanged);
//
// fileOutput
//
this.fileOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.fileOutput.DialogStyle = BlogRunnerGui.DialogStyle.Save;
this.fileOutput.Location = new System.Drawing.Point(12, 97);
this.fileOutput.Name = "fileOutput";
this.fileOutput.Path = "";
this.fileOutput.Size = new System.Drawing.Size(439, 36);
this.fileOutput.TabIndex = 2;
this.fileOutput.Text = "&Output file path (optional)";
this.fileOutput.PathChanged += new System.EventHandler(this.fileOutput_PathChanged);
//
// fileConfig
//
this.fileConfig.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.fileConfig.DialogStyle = BlogRunnerGui.DialogStyle.Open;
this.fileConfig.Location = new System.Drawing.Point(12, 55);
this.fileConfig.Name = "fileConfig";
this.fileConfig.Path = "";
this.fileConfig.Size = new System.Drawing.Size(439, 36);
this.fileConfig.TabIndex = 1;
this.fileConfig.Text = "Path to &Config.xml";
this.fileConfig.PathChanged += new System.EventHandler(this.fileConfig_PathChanged);
//
// fileBlogProviders
//
this.fileBlogProviders.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.fileBlogProviders.DialogStyle = BlogRunnerGui.DialogStyle.Open;
this.fileBlogProviders.Location = new System.Drawing.Point(12, 12);
this.fileBlogProviders.Name = "fileBlogProviders";
this.fileBlogProviders.Path = "";
this.fileBlogProviders.Size = new System.Drawing.Size(439, 37);
this.fileBlogProviders.TabIndex = 0;
this.fileBlogProviders.Text = "Path to Blog&Providers.xml";
this.fileBlogProviders.PathChanged += new System.EventHandler(this.fileBlogProviders_PathChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(463, 476);
this.Controls.Add(this.chkVerbose);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnRun);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.fileOutput);
this.Controls.Add(this.fileConfig);
this.Controls.Add(this.fileBlogProviders);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "BlogRunner";
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private FileInput fileBlogProviders;
private FileInput fileConfig;
private FileInput fileOutput;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnSelectNone;
private System.Windows.Forms.Button btnSelectAll;
private System.Windows.Forms.CheckedListBox listProviders;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnRun;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.CheckBox chkVerbose;
}
}