mirror of
https://github.com/fadden/6502bench.git
synced 2024-10-31 19:04:44 +00:00
114 lines
5.4 KiB
C#
114 lines
5.4 KiB
C#
/*
|
|
* Copyright 2018 faddenSoft
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
namespace SourceGen.AsmGen {
|
|
partial class GeneratorProgress {
|
|
/// <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.progressLabel = new System.Windows.Forms.Label();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressLabel
|
|
//
|
|
this.progressLabel.AutoSize = true;
|
|
this.progressLabel.Location = new System.Drawing.Point(13, 13);
|
|
this.progressLabel.Name = "progressLabel";
|
|
this.progressLabel.Size = new System.Drawing.Size(61, 13);
|
|
this.progressLabel.TabIndex = 1;
|
|
this.progressLabel.Text = "Preparing...";
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cancelButton.Location = new System.Drawing.Point(275, 79);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
|
this.cancelButton.TabIndex = 0;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.progressBar1.Location = new System.Drawing.Point(12, 39);
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(600, 23);
|
|
this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|
this.progressBar1.TabIndex = 2;
|
|
//
|
|
// backgroundWorker1
|
|
//
|
|
this.backgroundWorker1.WorkerReportsProgress = true;
|
|
this.backgroundWorker1.WorkerSupportsCancellation = true;
|
|
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|
this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
|
|
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|
//
|
|
// GeneratorProgress
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(624, 114);
|
|
this.Controls.Add(this.progressBar1);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.progressLabel);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "GeneratorProgress";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Generating Source...";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GeneratorProgress_FormClosing);
|
|
this.Load += new System.EventHandler(this.GeneratorProgress_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label progressLabel;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
}
|
|
} |