mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
211 lines
10 KiB
C#
211 lines
10 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Netch.Forms.ModeForms
|
|
{
|
|
partial class ProcessForm
|
|
{
|
|
/// <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.ConfigurationGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.RemarkLabel = new System.Windows.Forms.Label();
|
|
this.RemarkTextBox = new System.Windows.Forms.TextBox();
|
|
this.FilenameLabel = new System.Windows.Forms.Label();
|
|
this.FilenameTextBox = new System.Windows.Forms.TextBox();
|
|
this.containerControl1 = new System.Windows.Forms.ContainerControl();
|
|
this.RuleRichTextBox = new System.Windows.Forms.RichTextBox();
|
|
this.ProcessGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.SelectButton = new System.Windows.Forms.Button();
|
|
this.ScanButton = new System.Windows.Forms.Button();
|
|
this.ValidationButton = new System.Windows.Forms.Button();
|
|
this.ControlButton = new System.Windows.Forms.Button();
|
|
this.ConfigurationGroupBox.SuspendLayout();
|
|
this.containerControl1.SuspendLayout();
|
|
this.ProcessGroupBox.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// ConfigurationGroupBox
|
|
//
|
|
this.ConfigurationGroupBox.Controls.Add(this.RemarkLabel);
|
|
this.ConfigurationGroupBox.Controls.Add(this.RemarkTextBox);
|
|
this.ConfigurationGroupBox.Controls.Add(this.FilenameLabel);
|
|
this.ConfigurationGroupBox.Controls.Add(this.FilenameTextBox);
|
|
this.ConfigurationGroupBox.Controls.Add(this.containerControl1);
|
|
this.ConfigurationGroupBox.Controls.Add(this.ProcessGroupBox);
|
|
this.ConfigurationGroupBox.Controls.Add(this.ControlButton);
|
|
this.ConfigurationGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.ConfigurationGroupBox.Location = new System.Drawing.Point(12, 5);
|
|
this.ConfigurationGroupBox.Name = "ConfigurationGroupBox";
|
|
this.ConfigurationGroupBox.Size = new System.Drawing.Size(431, 378);
|
|
this.ConfigurationGroupBox.TabIndex = 0;
|
|
this.ConfigurationGroupBox.TabStop = false;
|
|
this.ConfigurationGroupBox.Text = "Configuration";
|
|
//
|
|
// RemarkLabel
|
|
//
|
|
this.RemarkLabel.AutoSize = true;
|
|
this.RemarkLabel.Location = new System.Drawing.Point(12, 25);
|
|
this.RemarkLabel.Name = "RemarkLabel";
|
|
this.RemarkLabel.Size = new System.Drawing.Size(53, 17);
|
|
this.RemarkLabel.TabIndex = 0;
|
|
this.RemarkLabel.Text = "Remark";
|
|
//
|
|
// RemarkTextBox
|
|
//
|
|
this.RemarkTextBox.Location = new System.Drawing.Point(84, 22);
|
|
this.RemarkTextBox.Name = "RemarkTextBox";
|
|
this.RemarkTextBox.Size = new System.Drawing.Size(341, 23);
|
|
this.RemarkTextBox.TabIndex = 1;
|
|
this.RemarkTextBox.TextChanged += new System.EventHandler(this.RemarkTextBox_TextChanged);
|
|
//
|
|
// FilenameLabel
|
|
//
|
|
this.FilenameLabel.AutoSize = true;
|
|
this.FilenameLabel.Location = new System.Drawing.Point(12, 55);
|
|
this.FilenameLabel.Name = "FilenameLabel";
|
|
this.FilenameLabel.Size = new System.Drawing.Size(59, 17);
|
|
this.FilenameLabel.TabIndex = 2;
|
|
this.FilenameLabel.Text = "Filename";
|
|
//
|
|
// FilenameTextBox
|
|
//
|
|
this.FilenameTextBox.Location = new System.Drawing.Point(84, 52);
|
|
this.FilenameTextBox.Name = "FilenameTextBox";
|
|
this.FilenameTextBox.ReadOnly = true;
|
|
this.FilenameTextBox.Size = new System.Drawing.Size(341, 23);
|
|
this.FilenameTextBox.TabIndex = 3;
|
|
//
|
|
// containerControl1
|
|
//
|
|
this.containerControl1.Controls.Add(this.RuleRichTextBox);
|
|
this.containerControl1.Location = new System.Drawing.Point(6, 81);
|
|
this.containerControl1.Name = "containerControl1";
|
|
this.containerControl1.Size = new System.Drawing.Size(419, 221);
|
|
this.containerControl1.TabIndex = 4;
|
|
this.containerControl1.Text = "containerControl1";
|
|
//
|
|
// RuleRichTextBox
|
|
//
|
|
this.RuleRichTextBox.DetectUrls = false;
|
|
this.RuleRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.RuleRichTextBox.Location = new System.Drawing.Point(0, 0);
|
|
this.RuleRichTextBox.Name = "RuleRichTextBox";
|
|
this.RuleRichTextBox.Size = new System.Drawing.Size(419, 221);
|
|
this.RuleRichTextBox.TabIndex = 0;
|
|
this.RuleRichTextBox.Text = "";
|
|
this.RuleRichTextBox.WordWrap = false;
|
|
//
|
|
// ProcessGroupBox
|
|
//
|
|
this.ProcessGroupBox.Controls.Add(this.SelectButton);
|
|
this.ProcessGroupBox.Controls.Add(this.ScanButton);
|
|
this.ProcessGroupBox.Controls.Add(this.ValidationButton);
|
|
this.ProcessGroupBox.Location = new System.Drawing.Point(6, 295);
|
|
this.ProcessGroupBox.Name = "ProcessGroupBox";
|
|
this.ProcessGroupBox.Size = new System.Drawing.Size(419, 44);
|
|
this.ProcessGroupBox.TabIndex = 5;
|
|
this.ProcessGroupBox.TabStop = false;
|
|
//
|
|
// SelectButton
|
|
//
|
|
this.SelectButton.Location = new System.Drawing.Point(6, 13);
|
|
this.SelectButton.Name = "SelectButton";
|
|
this.SelectButton.Size = new System.Drawing.Size(75, 23);
|
|
this.SelectButton.TabIndex = 0;
|
|
this.SelectButton.Text = "Select";
|
|
this.SelectButton.UseVisualStyleBackColor = true;
|
|
this.SelectButton.Click += new System.EventHandler(this.SelectButton_Click);
|
|
//
|
|
// ScanButton
|
|
//
|
|
this.ScanButton.Location = new System.Drawing.Point(87, 13);
|
|
this.ScanButton.Name = "ScanButton";
|
|
this.ScanButton.Size = new System.Drawing.Size(75, 23);
|
|
this.ScanButton.TabIndex = 1;
|
|
this.ScanButton.Text = "Scan";
|
|
this.ScanButton.UseVisualStyleBackColor = true;
|
|
this.ScanButton.Click += new System.EventHandler(this.ScanButton_Click);
|
|
//
|
|
// ValidationButton
|
|
//
|
|
this.ValidationButton.Location = new System.Drawing.Point(338, 13);
|
|
this.ValidationButton.Name = "ValidationButton";
|
|
this.ValidationButton.Size = new System.Drawing.Size(75, 23);
|
|
this.ValidationButton.TabIndex = 2;
|
|
this.ValidationButton.Text = "Validation";
|
|
this.ValidationButton.UseVisualStyleBackColor = true;
|
|
this.ValidationButton.Click += new System.EventHandler(this.ValidationButton_Click);
|
|
//
|
|
// ControlButton
|
|
//
|
|
this.ControlButton.Location = new System.Drawing.Point(344, 345);
|
|
this.ControlButton.Name = "ControlButton";
|
|
this.ControlButton.Size = new System.Drawing.Size(75, 23);
|
|
this.ControlButton.TabIndex = 6;
|
|
this.ControlButton.Text = "Save";
|
|
this.ControlButton.UseVisualStyleBackColor = true;
|
|
this.ControlButton.Click += new System.EventHandler(this.ControlButton_Click);
|
|
//
|
|
// Process
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(455, 388);
|
|
this.Controls.Add(this.ConfigurationGroupBox);
|
|
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
this.MaximizeBox = false;
|
|
this.Name = "ProcessForm";
|
|
this.Padding = new System.Windows.Forms.Padding(12, 5, 12, 5);
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Create Process Mode";
|
|
this.Load += new System.EventHandler(this.ModeForm_Load);
|
|
this.ConfigurationGroupBox.ResumeLayout(false);
|
|
this.ConfigurationGroupBox.PerformLayout();
|
|
this.containerControl1.ResumeLayout(false);
|
|
this.ProcessGroupBox.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button ScanButton;
|
|
private System.Windows.Forms.ContainerControl containerControl1;
|
|
public System.Windows.Forms.GroupBox ConfigurationGroupBox;
|
|
private System.Windows.Forms.Label RemarkLabel;
|
|
private System.Windows.Forms.GroupBox ProcessGroupBox;
|
|
private System.Windows.Forms.TextBox RemarkTextBox;
|
|
private System.Windows.Forms.Button SelectButton;
|
|
public System.Windows.Forms.Button ControlButton;
|
|
private System.Windows.Forms.Label FilenameLabel;
|
|
private System.Windows.Forms.TextBox FilenameTextBox;
|
|
private RichTextBox RuleRichTextBox;
|
|
private Button ValidationButton;
|
|
}
|
|
} |