tbf/EventViewer/Forms/SettingsDlg.Designer.cs

223 lines
11 KiB
C#
Raw Normal View History

namespace EventViewer.Forms
{
partial class SettingsDlg
{
/// <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.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.eventsDBConnStringTextBox = new System.Windows.Forms.TextBox();
this.eventsDBConnStringLabel = new System.Windows.Forms.Label();
this.userNameLabel = new System.Windows.Forms.Label();
this.userGroupBox = new System.Windows.Forms.GroupBox();
this.userNameTextBox = new System.Windows.Forms.TextBox();
this.nonAnonymousAccessCheckBox = new System.Windows.Forms.CheckBox();
this.usersDBConnStringLabel = new System.Windows.Forms.Label();
this.usersDBConnStringTextBox = new System.Windows.Forms.TextBox();
this.languageTextBox = new System.Windows.Forms.TextBox();
this.languageLabel = new System.Windows.Forms.Label();
this.recentTimeDaysTextBox = new System.Windows.Forms.TextBox();
this.recentTimeDaysLabel = new System.Windows.Forms.Label();
this.userGroupBox.SuspendLayout();
this.SuspendLayout();
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.Location = new System.Drawing.Point(686, 172);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(85, 38);
this.okButton.TabIndex = 0;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(781, 172);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(85, 38);
this.cancelButton.TabIndex = 1;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// eventsDBConnStringTextBox
//
this.eventsDBConnStringTextBox.Location = new System.Drawing.Point(164, 21);
this.eventsDBConnStringTextBox.Name = "eventsDBConnStringTextBox";
this.eventsDBConnStringTextBox.Size = new System.Drawing.Size(708, 20);
this.eventsDBConnStringTextBox.TabIndex = 5;
//
// eventsDBConnStringLabel
//
this.eventsDBConnStringLabel.AutoSize = true;
this.eventsDBConnStringLabel.Location = new System.Drawing.Point(26, 24);
this.eventsDBConnStringLabel.Name = "eventsDBConnStringLabel";
this.eventsDBConnStringLabel.Size = new System.Drawing.Size(87, 13);
this.eventsDBConnStringLabel.TabIndex = 4;
this.eventsDBConnStringLabel.Text = "Events database";
//
// userNameLabel
//
this.userNameLabel.AutoSize = true;
this.userNameLabel.Location = new System.Drawing.Point(14, 29);
this.userNameLabel.Name = "userNameLabel";
this.userNameLabel.Size = new System.Drawing.Size(58, 13);
this.userNameLabel.TabIndex = 0;
this.userNameLabel.Text = "User name";
//
// userGroupBox
//
this.userGroupBox.Controls.Add(this.userNameTextBox);
this.userGroupBox.Controls.Add(this.nonAnonymousAccessCheckBox);
this.userGroupBox.Controls.Add(this.userNameLabel);
this.userGroupBox.Location = new System.Drawing.Point(12, 86);
this.userGroupBox.Name = "userGroupBox";
this.userGroupBox.Size = new System.Drawing.Size(871, 63);
this.userGroupBox.TabIndex = 18;
this.userGroupBox.TabStop = false;
//
// userNameTextBox
//
this.userNameTextBox.Location = new System.Drawing.Point(152, 26);
this.userNameTextBox.Name = "userNameTextBox";
this.userNameTextBox.Size = new System.Drawing.Size(197, 20);
this.userNameTextBox.TabIndex = 8;
//
// nonAnonymousAccessCheckBox
//
this.nonAnonymousAccessCheckBox.AutoSize = true;
this.nonAnonymousAccessCheckBox.Location = new System.Drawing.Point(17, 0);
this.nonAnonymousAccessCheckBox.Name = "nonAnonymousAccessCheckBox";
this.nonAnonymousAccessCheckBox.Size = new System.Drawing.Size(140, 17);
this.nonAnonymousAccessCheckBox.TabIndex = 2;
this.nonAnonymousAccessCheckBox.Text = "Non anonymous access";
this.nonAnonymousAccessCheckBox.UseVisualStyleBackColor = true;
this.nonAnonymousAccessCheckBox.CheckedChanged += new System.EventHandler(this.nonAnonymousAccessCheckBox_CheckedChanged);
//
// usersDBConnStringLabel
//
this.usersDBConnStringLabel.AutoSize = true;
this.usersDBConnStringLabel.Location = new System.Drawing.Point(26, 54);
this.usersDBConnStringLabel.Name = "usersDBConnStringLabel";
this.usersDBConnStringLabel.Size = new System.Drawing.Size(81, 13);
this.usersDBConnStringLabel.TabIndex = 6;
this.usersDBConnStringLabel.Text = "Users database";
//
// usersDBConnStringTextBox
//
this.usersDBConnStringTextBox.Location = new System.Drawing.Point(164, 51);
this.usersDBConnStringTextBox.Name = "usersDBConnStringTextBox";
this.usersDBConnStringTextBox.Size = new System.Drawing.Size(708, 20);
this.usersDBConnStringTextBox.TabIndex = 7;
//
// languageTextBox
//
this.languageTextBox.Location = new System.Drawing.Point(164, 190);
this.languageTextBox.Name = "languageTextBox";
this.languageTextBox.Size = new System.Drawing.Size(53, 20);
this.languageTextBox.TabIndex = 20;
//
// languageLabel
//
this.languageLabel.AutoSize = true;
this.languageLabel.Location = new System.Drawing.Point(26, 193);
this.languageLabel.Name = "languageLabel";
this.languageLabel.Size = new System.Drawing.Size(55, 13);
this.languageLabel.TabIndex = 19;
this.languageLabel.Text = "Language";
//
// recentTimeDaysTextBox
//
this.recentTimeDaysTextBox.Location = new System.Drawing.Point(164, 160);
this.recentTimeDaysTextBox.Name = "recentTimeDaysTextBox";
this.recentTimeDaysTextBox.Size = new System.Drawing.Size(53, 20);
this.recentTimeDaysTextBox.TabIndex = 22;
//
// recentTimeDaysLabel
//
this.recentTimeDaysLabel.AutoSize = true;
this.recentTimeDaysLabel.Location = new System.Drawing.Point(26, 163);
this.recentTimeDaysLabel.Name = "recentTimeDaysLabel";
this.recentTimeDaysLabel.Size = new System.Drawing.Size(132, 13);
this.recentTimeDaysLabel.TabIndex = 21;
this.recentTimeDaysLabel.Text = "Recent time period in days";
//
// SettingsDlg
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(895, 228);
this.Controls.Add(this.recentTimeDaysTextBox);
this.Controls.Add(this.recentTimeDaysLabel);
this.Controls.Add(this.languageTextBox);
this.Controls.Add(this.usersDBConnStringLabel);
this.Controls.Add(this.languageLabel);
this.Controls.Add(this.userGroupBox);
this.Controls.Add(this.usersDBConnStringTextBox);
this.Controls.Add(this.eventsDBConnStringLabel);
this.Controls.Add(this.eventsDBConnStringTextBox);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsDlg";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Settings";
this.Load += new System.EventHandler(this.SettingsDlg_Load);
this.userGroupBox.ResumeLayout(false);
this.userGroupBox.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.TextBox eventsDBConnStringTextBox;
private System.Windows.Forms.Label eventsDBConnStringLabel;
private System.Windows.Forms.Label userNameLabel;
private System.Windows.Forms.GroupBox userGroupBox;
private System.Windows.Forms.CheckBox nonAnonymousAccessCheckBox;
private System.Windows.Forms.Label usersDBConnStringLabel;
private System.Windows.Forms.TextBox usersDBConnStringTextBox;
private System.Windows.Forms.TextBox userNameTextBox;
private System.Windows.Forms.TextBox languageTextBox;
private System.Windows.Forms.Label languageLabel;
private System.Windows.Forms.TextBox recentTimeDaysTextBox;
private System.Windows.Forms.Label recentTimeDaysLabel;
}
}