⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 templatereasonsetting.cs

📁 用C#开发的录井油气识别专家系统
💻 CS
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace expert
{
	/// <summary>
	/// TemplateReasonSetting 的摘要说明。
	/// </summary>
	public class TemplateReasonSetting : System.Windows.Forms.Form
	{
		public System.Windows.Forms.TextBox bittoignore;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Button Cancel;
		private System.Windows.Forms.Button OK;
		public System.Windows.Forms.CheckBox checkBoxSaveResult;
		/// <summary>
		/// 必需的设计器变量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public TemplateReasonSetting()
		{
			//
			// Windows 窗体设计器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
			//
		}

		/// <summary>
		/// 清理所有正在使用的资源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗体设计器生成的代码
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
			this.bittoignore = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.Cancel = new System.Windows.Forms.Button();
			this.OK = new System.Windows.Forms.Button();
			this.checkBoxSaveResult = new System.Windows.Forms.CheckBox();
			this.SuspendLayout();
			// 
			// bittoignore
			// 
			this.bittoignore.Location = new System.Drawing.Point(40, 56);
			this.bittoignore.Name = "bittoignore";
			this.bittoignore.Size = new System.Drawing.Size(120, 25);
			this.bittoignore.TabIndex = 0;
			this.bittoignore.Text = "0";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(24, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(280, 24);
			this.label1.TabIndex = 1;
			this.label1.Text = "允许忽略单参数的基因位数";
			// 
			// Cancel
			// 
			this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.Cancel.Location = new System.Drawing.Point(192, 208);
			this.Cancel.Name = "Cancel";
			this.Cancel.Size = new System.Drawing.Size(86, 31);
			this.Cancel.TabIndex = 13;
			this.Cancel.Text = "放弃";
			// 
			// OK
			// 
			this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.OK.Location = new System.Drawing.Point(16, 216);
			this.OK.Name = "OK";
			this.OK.Size = new System.Drawing.Size(75, 31);
			this.OK.TabIndex = 12;
			this.OK.Text = "确定";
			// 
			// checkBoxSaveResult
			// 
			this.checkBoxSaveResult.Location = new System.Drawing.Point(32, 112);
			this.checkBoxSaveResult.Name = "checkBoxSaveResult";
			this.checkBoxSaveResult.Size = new System.Drawing.Size(264, 40);
			this.checkBoxSaveResult.TabIndex = 14;
			this.checkBoxSaveResult.Text = "将结论写入测试数据文件";
			
			// 
			// TemplateReasonSetting
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(8, 18);
			this.ClientSize = new System.Drawing.Size(344, 256);
			this.Controls.Add(this.checkBoxSaveResult);
			this.Controls.Add(this.Cancel);
			this.Controls.Add(this.OK);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.bittoignore);
			this.Name = "TemplateReasonSetting";
			this.Text = "模板推理参数设置";
			this.Load += new System.EventHandler(this.TemplateReasonSetting_Load);
			this.ResumeLayout(false);

		}
		#endregion

		private void TemplateReasonSetting_Load(object sender, System.EventArgs e)
		{
		
		}

		
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -