2022-05-23 21:47:09 +03:00
|
|
|
|
namespace AwesomeEmailExtractor
|
|
|
|
|
{
|
|
|
|
|
partial class AdministrationForm
|
|
|
|
|
{
|
|
|
|
|
/// <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.mainTabControl = new System.Windows.Forms.TabControl();
|
|
|
|
|
this.mainSettingsTabPage = new System.Windows.Forms.TabPage();
|
|
|
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
|
|
|
this.browseButton = new System.Windows.Forms.Button();
|
|
|
|
|
this.pathToJournalTextBox = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.usersTabPage = new System.Windows.Forms.TabPage();
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.usersDataGridView = new System.Windows.Forms.DataGridView();
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.journalTabPage = new System.Windows.Forms.TabPage();
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
|
|
|
this.journalDataGridView = new System.Windows.Forms.DataGridView();
|
|
|
|
|
this.editUserButton = new System.Windows.Forms.Button();
|
|
|
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
|
|
|
this.deleteUserButton = new System.Windows.Forms.Button();
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.mainTabControl.SuspendLayout();
|
|
|
|
|
this.mainSettingsTabPage.SuspendLayout();
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.usersTabPage.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.usersDataGridView)).BeginInit();
|
|
|
|
|
this.journalTabPage.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.journalDataGridView)).BeginInit();
|
|
|
|
|
this.panel2.SuspendLayout();
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// mainTabControl
|
|
|
|
|
//
|
|
|
|
|
this.mainTabControl.Controls.Add(this.mainSettingsTabPage);
|
|
|
|
|
this.mainTabControl.Controls.Add(this.usersTabPage);
|
|
|
|
|
this.mainTabControl.Controls.Add(this.journalTabPage);
|
|
|
|
|
this.mainTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.mainTabControl.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.mainTabControl.Name = "mainTabControl";
|
|
|
|
|
this.mainTabControl.SelectedIndex = 0;
|
|
|
|
|
this.mainTabControl.Size = new System.Drawing.Size(800, 450);
|
|
|
|
|
this.mainTabControl.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// mainSettingsTabPage
|
|
|
|
|
//
|
|
|
|
|
this.mainSettingsTabPage.Controls.Add(this.label1);
|
|
|
|
|
this.mainSettingsTabPage.Controls.Add(this.browseButton);
|
|
|
|
|
this.mainSettingsTabPage.Controls.Add(this.pathToJournalTextBox);
|
|
|
|
|
this.mainSettingsTabPage.Location = new System.Drawing.Point(4, 22);
|
|
|
|
|
this.mainSettingsTabPage.Name = "mainSettingsTabPage";
|
|
|
|
|
this.mainSettingsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
|
this.mainSettingsTabPage.Size = new System.Drawing.Size(792, 424);
|
|
|
|
|
this.mainSettingsTabPage.TabIndex = 0;
|
|
|
|
|
this.mainSettingsTabPage.Text = "Общие настройки";
|
|
|
|
|
this.mainSettingsTabPage.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
this.label1.AutoSize = true;
|
|
|
|
|
this.label1.Location = new System.Drawing.Point(8, 12);
|
|
|
|
|
this.label1.Name = "label1";
|
|
|
|
|
this.label1.Size = new System.Drawing.Size(140, 13);
|
|
|
|
|
this.label1.TabIndex = 2;
|
|
|
|
|
this.label1.Text = "Путь к файлу с журналом:";
|
|
|
|
|
//
|
|
|
|
|
// browseButton
|
|
|
|
|
//
|
|
|
|
|
this.browseButton.Location = new System.Drawing.Point(678, 26);
|
|
|
|
|
this.browseButton.Name = "browseButton";
|
|
|
|
|
this.browseButton.Size = new System.Drawing.Size(106, 23);
|
|
|
|
|
this.browseButton.TabIndex = 1;
|
|
|
|
|
this.browseButton.Text = "Обзор";
|
|
|
|
|
this.browseButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.browseButton.Click += new System.EventHandler(this.browseButton_Click);
|
|
|
|
|
//
|
|
|
|
|
// pathToJournalTextBox
|
|
|
|
|
//
|
|
|
|
|
this.pathToJournalTextBox.Enabled = false;
|
|
|
|
|
this.pathToJournalTextBox.Location = new System.Drawing.Point(8, 28);
|
|
|
|
|
this.pathToJournalTextBox.Name = "pathToJournalTextBox";
|
|
|
|
|
this.pathToJournalTextBox.Size = new System.Drawing.Size(664, 20);
|
|
|
|
|
this.pathToJournalTextBox.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// usersTabPage
|
|
|
|
|
//
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.usersTabPage.Controls.Add(this.usersDataGridView);
|
|
|
|
|
this.usersTabPage.Controls.Add(this.panel2);
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.usersTabPage.Location = new System.Drawing.Point(4, 22);
|
|
|
|
|
this.usersTabPage.Name = "usersTabPage";
|
|
|
|
|
this.usersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
|
this.usersTabPage.Size = new System.Drawing.Size(792, 424);
|
|
|
|
|
this.usersTabPage.TabIndex = 1;
|
|
|
|
|
this.usersTabPage.Text = "Пользователи";
|
|
|
|
|
this.usersTabPage.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
2022-05-24 09:09:56 +03:00
|
|
|
|
// usersDataGridView
|
|
|
|
|
//
|
|
|
|
|
this.usersDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
this.usersDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.usersDataGridView.Location = new System.Drawing.Point(3, 31);
|
|
|
|
|
this.usersDataGridView.Name = "usersDataGridView";
|
|
|
|
|
this.usersDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
|
|
|
this.usersDataGridView.Size = new System.Drawing.Size(786, 390);
|
|
|
|
|
this.usersDataGridView.TabIndex = 0;
|
|
|
|
|
//
|
2022-05-23 21:47:09 +03:00
|
|
|
|
// journalTabPage
|
|
|
|
|
//
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.journalTabPage.Controls.Add(this.panel1);
|
|
|
|
|
this.journalTabPage.Controls.Add(this.journalDataGridView);
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.journalTabPage.Location = new System.Drawing.Point(4, 22);
|
|
|
|
|
this.journalTabPage.Name = "journalTabPage";
|
|
|
|
|
this.journalTabPage.Size = new System.Drawing.Size(792, 424);
|
|
|
|
|
this.journalTabPage.TabIndex = 2;
|
|
|
|
|
this.journalTabPage.Text = "Журнал";
|
|
|
|
|
this.journalTabPage.UseVisualStyleBackColor = true;
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.journalTabPage.Click += new System.EventHandler(this.journalTabPage_Click);
|
|
|
|
|
//
|
|
|
|
|
// panel1
|
|
|
|
|
//
|
|
|
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
|
|
|
|
|
this.panel1.Location = new System.Drawing.Point(497, 0);
|
|
|
|
|
this.panel1.Name = "panel1";
|
|
|
|
|
this.panel1.Size = new System.Drawing.Size(295, 424);
|
|
|
|
|
this.panel1.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// journalDataGridView
|
|
|
|
|
//
|
|
|
|
|
this.journalDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
this.journalDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.journalDataGridView.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.journalDataGridView.Name = "journalDataGridView";
|
|
|
|
|
this.journalDataGridView.Size = new System.Drawing.Size(792, 424);
|
|
|
|
|
this.journalDataGridView.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// editUserButton
|
|
|
|
|
//
|
|
|
|
|
this.editUserButton.Location = new System.Drawing.Point(3, 3);
|
|
|
|
|
this.editUserButton.Name = "editUserButton";
|
|
|
|
|
this.editUserButton.Size = new System.Drawing.Size(131, 20);
|
|
|
|
|
this.editUserButton.TabIndex = 1;
|
|
|
|
|
this.editUserButton.Text = "Редактировать";
|
|
|
|
|
this.editUserButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.editUserButton.Click += new System.EventHandler(this.editUserButton_Click);
|
|
|
|
|
//
|
|
|
|
|
// panel2
|
|
|
|
|
//
|
|
|
|
|
this.panel2.Controls.Add(this.deleteUserButton);
|
|
|
|
|
this.panel2.Controls.Add(this.editUserButton);
|
|
|
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.panel2.Location = new System.Drawing.Point(3, 3);
|
|
|
|
|
this.panel2.Name = "panel2";
|
|
|
|
|
this.panel2.Size = new System.Drawing.Size(786, 28);
|
|
|
|
|
this.panel2.TabIndex = 2;
|
|
|
|
|
//
|
|
|
|
|
// deleteUserButton
|
|
|
|
|
//
|
|
|
|
|
this.deleteUserButton.Location = new System.Drawing.Point(140, 3);
|
|
|
|
|
this.deleteUserButton.Name = "deleteUserButton";
|
|
|
|
|
this.deleteUserButton.Size = new System.Drawing.Size(131, 20);
|
|
|
|
|
this.deleteUserButton.TabIndex = 2;
|
|
|
|
|
this.deleteUserButton.Text = "Удалить";
|
|
|
|
|
this.deleteUserButton.UseVisualStyleBackColor = true;
|
2022-05-24 10:02:57 +03:00
|
|
|
|
this.deleteUserButton.Click += new System.EventHandler(this.deleteUserButton_Click);
|
2022-05-23 21:47:09 +03:00
|
|
|
|
//
|
|
|
|
|
// AdministrationForm
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
|
|
|
this.Controls.Add(this.mainTabControl);
|
|
|
|
|
this.Name = "AdministrationForm";
|
|
|
|
|
this.Text = "Администрирование";
|
|
|
|
|
this.Load += new System.EventHandler(this.AdministrationForm_Load);
|
|
|
|
|
this.mainTabControl.ResumeLayout(false);
|
|
|
|
|
this.mainSettingsTabPage.ResumeLayout(false);
|
|
|
|
|
this.mainSettingsTabPage.PerformLayout();
|
2022-05-24 09:09:56 +03:00
|
|
|
|
this.usersTabPage.ResumeLayout(false);
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.usersDataGridView)).EndInit();
|
|
|
|
|
this.journalTabPage.ResumeLayout(false);
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.journalDataGridView)).EndInit();
|
|
|
|
|
this.panel2.ResumeLayout(false);
|
2022-05-23 21:47:09 +03:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.TabControl mainTabControl;
|
|
|
|
|
private System.Windows.Forms.TabPage mainSettingsTabPage;
|
|
|
|
|
private System.Windows.Forms.TabPage usersTabPage;
|
|
|
|
|
private System.Windows.Forms.TabPage journalTabPage;
|
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
|
|
|
private System.Windows.Forms.Button browseButton;
|
|
|
|
|
private System.Windows.Forms.TextBox pathToJournalTextBox;
|
2022-05-24 09:09:56 +03:00
|
|
|
|
private System.Windows.Forms.DataGridView usersDataGridView;
|
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
|
|
|
private System.Windows.Forms.DataGridView journalDataGridView;
|
|
|
|
|
private System.Windows.Forms.Panel panel2;
|
|
|
|
|
private System.Windows.Forms.Button deleteUserButton;
|
|
|
|
|
private System.Windows.Forms.Button editUserButton;
|
2022-05-23 21:47:09 +03:00
|
|
|
|
}
|
|
|
|
|
}
|