using System.Windows.Forms; namespace Process_Auto_Relaunch { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.groupBoxActions = new System.Windows.Forms.GroupBox(); this.numericUpDown1 = new System.Windows.Forms.NumericUpDown(); this.label1 = new System.Windows.Forms.Label(); this.radioButtonRestartTimer = new System.Windows.Forms.RadioButton(); this.radioButtonRestartNow = new System.Windows.Forms.RadioButton(); this.buttonSetProgramStart = new System.Windows.Forms.Button(); this.groupBoxProgramStart = new System.Windows.Forms.GroupBox(); this.textBoxArguments = new System.Windows.Forms.TextBox(); this.labelArguments = new System.Windows.Forms.Label(); this.labelProgramStartPath = new System.Windows.Forms.Label(); this.groupBoxProcessName = new System.Windows.Forms.GroupBox(); this.textBoxProcessName = new System.Windows.Forms.TextBox(); this.groupBoxEnabled = new System.Windows.Forms.GroupBox(); this.checkBoxCloseFreezeProcess = new System.Windows.Forms.CheckBox(); this.checkBoxSaveState = new System.Windows.Forms.CheckBox(); this.radioButtonEnableWathing = new System.Windows.Forms.RadioButton(); this.radioButtonDisableWathing = new System.Windows.Forms.RadioButton(); this.groupBoxStatus = new System.Windows.Forms.GroupBox(); this.labelStatus = new System.Windows.Forms.Label(); this.myBackgroundWorker = new System.ComponentModel.BackgroundWorker(); this.groupBoxHistory = new System.Windows.Forms.GroupBox(); this.richTextBoxHistory = new System.Windows.Forms.RichTextBox(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.processInformationLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.mainMenu = new System.Windows.Forms.MenuStrip(); this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.webhookSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.AboutProgram = new System.Windows.Forms.ToolStripMenuItem(); this.tipProgramStartPath = new System.Windows.Forms.ToolTip(this.components); this.groupBoxActions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit(); this.groupBoxProgramStart.SuspendLayout(); this.groupBoxProcessName.SuspendLayout(); this.groupBoxEnabled.SuspendLayout(); this.groupBoxStatus.SuspendLayout(); this.groupBoxHistory.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.mainMenu.SuspendLayout(); this.SuspendLayout(); // // groupBoxActions // this.groupBoxActions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxActions.Controls.Add(this.numericUpDown1); this.groupBoxActions.Controls.Add(this.label1); this.groupBoxActions.Controls.Add(this.radioButtonRestartTimer); this.groupBoxActions.Controls.Add(this.radioButtonRestartNow); this.groupBoxActions.Location = new System.Drawing.Point(13, 109); this.groupBoxActions.Margin = new System.Windows.Forms.Padding(4); this.groupBoxActions.Name = "groupBoxActions"; this.groupBoxActions.Padding = new System.Windows.Forms.Padding(4); this.groupBoxActions.Size = new System.Drawing.Size(382, 84); this.groupBoxActions.TabIndex = 0; this.groupBoxActions.TabStop = false; this.groupBoxActions.Text = "Действие после отсутствия процесса"; // // numericUpDown1 // this.numericUpDown1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::RelaunchProcess.Properties.Settings.Default, "timer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.numericUpDown1.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.numericUpDown1.Location = new System.Drawing.Point(199, 23); this.numericUpDown1.Margin = new System.Windows.Forms.Padding(4); this.numericUpDown1.Maximum = new decimal(new int[] { 1800, 0, 0, 0}); this.numericUpDown1.Minimum = new decimal(new int[] { 5, 0, 0, 0}); this.numericUpDown1.Name = "numericUpDown1"; this.numericUpDown1.Size = new System.Drawing.Size(72, 22); this.numericUpDown1.TabIndex = 5; this.numericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.numericUpDown1.Value = global::RelaunchProcess.Properties.Settings.Default.timer; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(279, 26); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(53, 16); this.label1.TabIndex = 4; this.label1.Text = "секунд"; // // radioButtonRestartTimer // this.radioButtonRestartTimer.AutoSize = true; this.radioButtonRestartTimer.Checked = true; this.radioButtonRestartTimer.Location = new System.Drawing.Point(12, 23); this.radioButtonRestartTimer.Margin = new System.Windows.Forms.Padding(4); this.radioButtonRestartTimer.Name = "radioButtonRestartTimer"; this.radioButtonRestartTimer.Size = new System.Drawing.Size(170, 20); this.radioButtonRestartTimer.TabIndex = 1; this.radioButtonRestartTimer.TabStop = true; this.radioButtonRestartTimer.Text = "Перезапустить через"; this.radioButtonRestartTimer.UseVisualStyleBackColor = true; // // radioButtonRestartNow // this.radioButtonRestartNow.AutoSize = true; this.radioButtonRestartNow.Checked = global::RelaunchProcess.Properties.Settings.Default.restartNow; this.radioButtonRestartNow.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::RelaunchProcess.Properties.Settings.Default, "restartNow", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.radioButtonRestartNow.Location = new System.Drawing.Point(11, 50); this.radioButtonRestartNow.Margin = new System.Windows.Forms.Padding(4); this.radioButtonRestartNow.Name = "radioButtonRestartNow"; this.radioButtonRestartNow.Size = new System.Drawing.Size(169, 20); this.radioButtonRestartNow.TabIndex = 0; this.radioButtonRestartNow.Text = "Перезапускать сразу"; this.radioButtonRestartNow.UseVisualStyleBackColor = true; // // buttonSetProgramStart // this.buttonSetProgramStart.Location = new System.Drawing.Point(7, 23); this.buttonSetProgramStart.Margin = new System.Windows.Forms.Padding(4); this.buttonSetProgramStart.Name = "buttonSetProgramStart"; this.buttonSetProgramStart.Size = new System.Drawing.Size(89, 34); this.buttonSetProgramStart.TabIndex = 1; this.buttonSetProgramStart.Text = "Обзор"; this.buttonSetProgramStart.UseVisualStyleBackColor = true; this.buttonSetProgramStart.Click += new System.EventHandler(this.ButtonSetProgramStart_Click); // // groupBoxProgramStart // this.groupBoxProgramStart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxProgramStart.Controls.Add(this.textBoxArguments); this.groupBoxProgramStart.Controls.Add(this.labelArguments); this.groupBoxProgramStart.Controls.Add(this.labelProgramStartPath); this.groupBoxProgramStart.Controls.Add(this.buttonSetProgramStart); this.groupBoxProgramStart.Location = new System.Drawing.Point(13, 201); this.groupBoxProgramStart.Margin = new System.Windows.Forms.Padding(4); this.groupBoxProgramStart.Name = "groupBoxProgramStart"; this.groupBoxProgramStart.Padding = new System.Windows.Forms.Padding(4); this.groupBoxProgramStart.Size = new System.Drawing.Size(382, 112); this.groupBoxProgramStart.TabIndex = 6; this.groupBoxProgramStart.TabStop = false; this.groupBoxProgramStart.Text = "Запуск программы"; // // textBoxArguments // this.textBoxArguments.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::RelaunchProcess.Properties.Settings.Default, "arguments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.textBoxArguments.Location = new System.Drawing.Point(7, 80); this.textBoxArguments.Margin = new System.Windows.Forms.Padding(4); this.textBoxArguments.Name = "textBoxArguments"; this.textBoxArguments.Size = new System.Drawing.Size(365, 22); this.textBoxArguments.TabIndex = 4; this.textBoxArguments.Text = global::RelaunchProcess.Properties.Settings.Default.arguments; // // labelArguments // this.labelArguments.AutoSize = true; this.labelArguments.Location = new System.Drawing.Point(5, 61); this.labelArguments.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.labelArguments.Name = "labelArguments"; this.labelArguments.Size = new System.Drawing.Size(193, 16); this.labelArguments.TabIndex = 3; this.labelArguments.Text = "Дополнительные аргументы"; // // labelProgramStartPath // this.labelProgramStartPath.AutoSize = true; this.labelProgramStartPath.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::RelaunchProcess.Properties.Settings.Default, "startProgramPath", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.labelProgramStartPath.Location = new System.Drawing.Point(104, 32); this.labelProgramStartPath.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.labelProgramStartPath.Name = "labelProgramStartPath"; this.labelProgramStartPath.Size = new System.Drawing.Size(0, 16); this.labelProgramStartPath.TabIndex = 2; this.labelProgramStartPath.Text = global::RelaunchProcess.Properties.Settings.Default.startProgramPath; // // groupBoxProcessName // this.groupBoxProcessName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxProcessName.Controls.Add(this.textBoxProcessName); this.groupBoxProcessName.Location = new System.Drawing.Point(13, 39); this.groupBoxProcessName.Margin = new System.Windows.Forms.Padding(4); this.groupBoxProcessName.Name = "groupBoxProcessName"; this.groupBoxProcessName.Padding = new System.Windows.Forms.Padding(4); this.groupBoxProcessName.Size = new System.Drawing.Size(382, 62); this.groupBoxProcessName.TabIndex = 8; this.groupBoxProcessName.TabStop = false; this.groupBoxProcessName.Text = "Название наблюдаемого процесса (без расширения)"; // // textBoxProcessName // this.textBoxProcessName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.textBoxProcessName.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::RelaunchProcess.Properties.Settings.Default, "processName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.textBoxProcessName.Location = new System.Drawing.Point(7, 25); this.textBoxProcessName.Margin = new System.Windows.Forms.Padding(4); this.textBoxProcessName.Name = "textBoxProcessName"; this.textBoxProcessName.Size = new System.Drawing.Size(367, 22); this.textBoxProcessName.TabIndex = 3; this.textBoxProcessName.Text = global::RelaunchProcess.Properties.Settings.Default.processName; // // groupBoxEnabled // this.groupBoxEnabled.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxEnabled.Controls.Add(this.checkBoxCloseFreezeProcess); this.groupBoxEnabled.Controls.Add(this.checkBoxSaveState); this.groupBoxEnabled.Controls.Add(this.radioButtonEnableWathing); this.groupBoxEnabled.Controls.Add(this.radioButtonDisableWathing); this.groupBoxEnabled.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.groupBoxEnabled.Location = new System.Drawing.Point(13, 321); this.groupBoxEnabled.Margin = new System.Windows.Forms.Padding(4); this.groupBoxEnabled.Name = "groupBoxEnabled"; this.groupBoxEnabled.Padding = new System.Windows.Forms.Padding(4); this.groupBoxEnabled.Size = new System.Drawing.Size(382, 103); this.groupBoxEnabled.TabIndex = 9; this.groupBoxEnabled.TabStop = false; this.groupBoxEnabled.Text = "Состояние"; // // checkBoxCloseFreezeProcess // this.checkBoxCloseFreezeProcess.AutoSize = true; this.checkBoxCloseFreezeProcess.Checked = global::RelaunchProcess.Properties.Settings.Default.closeFreezeProcess; this.checkBoxCloseFreezeProcess.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBoxCloseFreezeProcess.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::RelaunchProcess.Properties.Settings.Default, "closeFreezeProcess", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.checkBoxCloseFreezeProcess.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.checkBoxCloseFreezeProcess.Location = new System.Drawing.Point(20, 75); this.checkBoxCloseFreezeProcess.Margin = new System.Windows.Forms.Padding(4); this.checkBoxCloseFreezeProcess.Name = "checkBoxCloseFreezeProcess"; this.checkBoxCloseFreezeProcess.Size = new System.Drawing.Size(221, 20); this.checkBoxCloseFreezeProcess.TabIndex = 3; this.checkBoxCloseFreezeProcess.Text = "Закрывать зависший процесс"; this.checkBoxCloseFreezeProcess.UseVisualStyleBackColor = true; // // checkBoxSaveState // this.checkBoxSaveState.AutoSize = true; this.checkBoxSaveState.Checked = global::RelaunchProcess.Properties.Settings.Default.saveOldState; this.checkBoxSaveState.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBoxSaveState.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::RelaunchProcess.Properties.Settings.Default, "saveOldState", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.checkBoxSaveState.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.checkBoxSaveState.Location = new System.Drawing.Point(20, 50); this.checkBoxSaveState.Margin = new System.Windows.Forms.Padding(4); this.checkBoxSaveState.Name = "checkBoxSaveState"; this.checkBoxSaveState.Size = new System.Drawing.Size(251, 20); this.checkBoxSaveState.TabIndex = 2; this.checkBoxSaveState.Text = "Запоминать последнее состояние"; this.checkBoxSaveState.UseVisualStyleBackColor = true; // // radioButtonEnableWathing // this.radioButtonEnableWathing.AutoSize = true; this.radioButtonEnableWathing.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.radioButtonEnableWathing.Location = new System.Drawing.Point(141, 23); this.radioButtonEnableWathing.Margin = new System.Windows.Forms.Padding(4); this.radioButtonEnableWathing.Name = "radioButtonEnableWathing"; this.radioButtonEnableWathing.Size = new System.Drawing.Size(91, 20); this.radioButtonEnableWathing.TabIndex = 1; this.radioButtonEnableWathing.Text = "Включено"; this.radioButtonEnableWathing.UseVisualStyleBackColor = true; this.radioButtonEnableWathing.CheckedChanged += new System.EventHandler(this.radioButtonEnableWathing_CheckedChanged); // // radioButtonDisableWathing // this.radioButtonDisableWathing.AutoSize = true; this.radioButtonDisableWathing.Checked = true; this.radioButtonDisableWathing.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.radioButtonDisableWathing.Location = new System.Drawing.Point(11, 23); this.radioButtonDisableWathing.Margin = new System.Windows.Forms.Padding(4); this.radioButtonDisableWathing.Name = "radioButtonDisableWathing"; this.radioButtonDisableWathing.Size = new System.Drawing.Size(100, 20); this.radioButtonDisableWathing.TabIndex = 0; this.radioButtonDisableWathing.TabStop = true; this.radioButtonDisableWathing.Text = "Выключено"; this.radioButtonDisableWathing.UseVisualStyleBackColor = true; this.radioButtonDisableWathing.CheckedChanged += new System.EventHandler(this.radioButtonDisableWathing_CheckedChanged); // // groupBoxStatus // this.groupBoxStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxStatus.Controls.Add(this.labelStatus); this.groupBoxStatus.Location = new System.Drawing.Point(13, 432); this.groupBoxStatus.Margin = new System.Windows.Forms.Padding(4); this.groupBoxStatus.Name = "groupBoxStatus"; this.groupBoxStatus.Padding = new System.Windows.Forms.Padding(4); this.groupBoxStatus.Size = new System.Drawing.Size(382, 64); this.groupBoxStatus.TabIndex = 10; this.groupBoxStatus.TabStop = false; this.groupBoxStatus.Text = "Текущий статус"; // // labelStatus // this.labelStatus.AutoSize = true; this.labelStatus.Location = new System.Drawing.Point(20, 31); this.labelStatus.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.labelStatus.Name = "labelStatus"; this.labelStatus.Size = new System.Drawing.Size(93, 16); this.labelStatus.TabIndex = 0; this.labelStatus.Text = "Не запущено"; // // myBackgroundWorker // this.myBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorkerDoWork); this.myBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted); // // groupBoxHistory // this.groupBoxHistory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBoxHistory.Controls.Add(this.richTextBoxHistory); this.groupBoxHistory.Location = new System.Drawing.Point(13, 504); this.groupBoxHistory.Name = "groupBoxHistory"; this.groupBoxHistory.Size = new System.Drawing.Size(382, 156); this.groupBoxHistory.TabIndex = 11; this.groupBoxHistory.TabStop = false; this.groupBoxHistory.Text = "История запусков"; // // richTextBoxHistory // this.richTextBoxHistory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.richTextBoxHistory.Location = new System.Drawing.Point(7, 21); this.richTextBoxHistory.Name = "richTextBoxHistory"; this.richTextBoxHistory.ReadOnly = true; this.richTextBoxHistory.Size = new System.Drawing.Size(369, 129); this.richTextBoxHistory.TabIndex = 0; this.richTextBoxHistory.Text = ""; // // statusStrip1 // this.statusStrip1.AutoSize = false; this.statusStrip1.BackColor = System.Drawing.SystemColors.Control; this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.processInformationLabel}); this.statusStrip1.Location = new System.Drawing.Point(0, 665); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(420, 22); this.statusStrip1.SizingGrip = false; this.statusStrip1.TabIndex = 12; this.statusStrip1.Text = "statusStrip1"; // // processInformationLabel // this.processInformationLabel.Name = "processInformationLabel"; this.processInformationLabel.Size = new System.Drawing.Size(16, 17); this.processInformationLabel.Text = " "; // // mainMenu // this.mainMenu.BackColor = System.Drawing.SystemColors.MenuBar; this.mainMenu.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.settingsToolStripMenuItem, this.AboutProgram}); this.mainMenu.Location = new System.Drawing.Point(0, 0); this.mainMenu.Name = "mainMenu"; this.mainMenu.Size = new System.Drawing.Size(420, 24); this.mainMenu.TabIndex = 13; this.mainMenu.Text = "menuStrip1"; // // settingsToolStripMenuItem // this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.webhookSettingsMenuItem}); this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem"; this.settingsToolStripMenuItem.Size = new System.Drawing.Size(90, 20); this.settingsToolStripMenuItem.Text = "Настройки"; // // webhookSettingsMenuItem // this.webhookSettingsMenuItem.Name = "webhookSettingsMenuItem"; this.webhookSettingsMenuItem.Size = new System.Drawing.Size(180, 22); this.webhookSettingsMenuItem.Text = "Вебхук"; this.webhookSettingsMenuItem.Click += new System.EventHandler(this.webhookDiscordToolStripMenuItem_Click); // // AboutProgram // this.AboutProgram.Name = "AboutProgram"; this.AboutProgram.Size = new System.Drawing.Size(104, 20); this.AboutProgram.Text = "О программе"; this.AboutProgram.Click += new System.EventHandler(this.AboutProgram_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(420, 687); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.mainMenu); this.Controls.Add(this.groupBoxHistory); this.Controls.Add(this.groupBoxStatus); this.Controls.Add(this.groupBoxEnabled); this.Controls.Add(this.groupBoxProcessName); this.Controls.Add(this.groupBoxProgramStart); this.Controls.Add(this.groupBoxActions); this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.mainMenu; this.Margin = new System.Windows.Forms.Padding(4); this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(436, 726); this.MinimumSize = new System.Drawing.Size(436, 436); this.Name = "Form1"; this.Text = "Relaunch Process"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.Load += new System.EventHandler(this.Form1_Load); this.groupBoxActions.ResumeLayout(false); this.groupBoxActions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit(); this.groupBoxProgramStart.ResumeLayout(false); this.groupBoxProgramStart.PerformLayout(); this.groupBoxProcessName.ResumeLayout(false); this.groupBoxProcessName.PerformLayout(); this.groupBoxEnabled.ResumeLayout(false); this.groupBoxEnabled.PerformLayout(); this.groupBoxStatus.ResumeLayout(false); this.groupBoxStatus.PerformLayout(); this.groupBoxHistory.ResumeLayout(false); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.mainMenu.ResumeLayout(false); this.mainMenu.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private GroupBox groupBoxActions; private Label label1; private RadioButton radioButtonRestartTimer; private RadioButton radioButtonRestartNow; private Button buttonSetProgramStart; private TextBox textBoxProcessName; private GroupBox groupBoxProgramStart; private Label labelProgramStartPath; private RadioButton radioButtonEnableWathing; private RadioButton radioButtonDisableWathing; private CheckBox checkBoxSaveState; private GroupBox groupBoxProcessName; private GroupBox groupBoxEnabled; private GroupBox groupBoxStatus; private TextBox textBoxArguments; private Label labelArguments; public Label labelStatus; private System.ComponentModel.BackgroundWorker myBackgroundWorker; private NumericUpDown numericUpDown1; private GroupBox groupBoxHistory; private RichTextBox richTextBoxHistory; private StatusStrip statusStrip1; private ToolStripStatusLabel processInformationLabel; private MenuStrip mainMenu; private ToolStripMenuItem settingsToolStripMenuItem; private ToolStripMenuItem webhookSettingsMenuItem; private ToolStripMenuItem AboutProgram; private ToolTip tipProgramStartPath; private CheckBox checkBoxCloseFreezeProcess; } }