📄 solving multidimensionalknapsackproblem.designer.cs
字号:
namespace DPH_Multidimensional_Knapsack_Problem
{
partial class DP
{
/// <summary>
/// 設計工具所需的變數。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清除任何使用中的資源。
/// </summary>
/// <param name="disposing">如果應該處置 Managed 資源則為 true,否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 設計工具產生的程式碼
/// <summary>
/// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
///
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
this.process1 = new System.Diagnostics.Process();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.DPRichBox = new System.Windows.Forms.RichTextBox();
this.DataSet = new System.Windows.Forms.Label();
this.DPLoad = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.OptimalBox = new System.Windows.Forms.RichTextBox();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripProgressBar1});
this.statusStrip1.Location = new System.Drawing.Point(0, 305);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(644, 22);
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripProgressBar1
//
this.toolStripProgressBar1.Name = "toolStripProgressBar1";
this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
//
// process1
//
this.process1.StartInfo.Domain = "";
this.process1.StartInfo.LoadUserProfile = false;
this.process1.StartInfo.Password = null;
this.process1.StartInfo.StandardErrorEncoding = null;
this.process1.StartInfo.StandardOutputEncoding = null;
this.process1.StartInfo.UserName = "";
this.process1.SynchronizingObject = this;
//
// DPRichBox
//
this.DPRichBox.Location = new System.Drawing.Point(12, 30);
this.DPRichBox.Name = "DPRichBox";
this.DPRichBox.Size = new System.Drawing.Size(306, 240);
this.DPRichBox.TabIndex = 1;
this.DPRichBox.Text = "";
//
// DataSet
//
this.DataSet.AutoSize = true;
this.DataSet.Location = new System.Drawing.Point(12, 9);
this.DataSet.Name = "DataSet";
this.DataSet.Size = new System.Drawing.Size(51, 15);
this.DataSet.TabIndex = 3;
this.DataSet.Text = "DataSet";
//
// DPLoad
//
this.DPLoad.Location = new System.Drawing.Point(324, 42);
this.DPLoad.Name = "DPLoad";
this.DPLoad.Size = new System.Drawing.Size(75, 23);
this.DPLoad.TabIndex = 4;
this.DPLoad.Text = "Load";
this.DPLoad.UseVisualStyleBackColor = true;
this.DPLoad.Click += new System.EventHandler(this.DPLoad_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
//
// OptimalBox
//
this.OptimalBox.Location = new System.Drawing.Point(324, 93);
this.OptimalBox.Name = "OptimalBox";
this.OptimalBox.Size = new System.Drawing.Size(287, 177);
this.OptimalBox.TabIndex = 5;
this.OptimalBox.Text = "***********使用說明**************\n按Load開啟Pref檔,左邊TEXT會跑出原始資料~\n這邊會出現最佳解的決策與最佳值!!\n\n*因為我" +
"對I/O不熟識,所以如果自行對TXT編輯後,可能會有多餘的字元產生以致讀檔錯誤!!\n建議直接由genPref2執行出檔案來讀~\n另外讀一次檔後要讀下一個檔要關掉" +
"重開Orz....\n\n助教 辛苦啦~";
//
// DP
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(644, 327);
this.Controls.Add(this.OptimalBox);
this.Controls.Add(this.DPLoad);
this.Controls.Add(this.DataSet);
this.Controls.Add(this.DPRichBox);
this.Controls.Add(this.statusStrip1);
this.Name = "DP";
this.Text = "Solving Multidimensional Knapsack Problem";
this.Load += new System.EventHandler(this.DP_Load);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
private System.Diagnostics.Process process1;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.RichTextBox DPRichBox;
private System.Windows.Forms.Label DataSet;
private System.Windows.Forms.Button DPLoad;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.RichTextBox OptimalBox;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -