mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-01 22:50:35 +00:00
98 lines
4.5 KiB
C#
98 lines
4.5 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.Tools {
|
|
partial class AsciiChart {
|
|
/// <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() {
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AsciiChart));
|
|
this.chartTextBox = new System.Windows.Forms.TextBox();
|
|
this.modeComboBox = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// chartTextBox
|
|
//
|
|
this.chartTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.chartTextBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.chartTextBox.Location = new System.Drawing.Point(13, 13);
|
|
this.chartTextBox.Multiline = true;
|
|
this.chartTextBox.Name = "chartTextBox";
|
|
this.chartTextBox.ReadOnly = true;
|
|
this.chartTextBox.Size = new System.Drawing.Size(370, 450);
|
|
this.chartTextBox.TabIndex = 0;
|
|
this.chartTextBox.Text = resources.GetString("chartTextBox.Text");
|
|
//
|
|
// modeComboBox
|
|
//
|
|
this.modeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.modeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.modeComboBox.FormattingEnabled = true;
|
|
this.modeComboBox.Items.AddRange(new object[] {
|
|
"Standard ASCII",
|
|
"High ASCII"});
|
|
this.modeComboBox.Location = new System.Drawing.Point(13, 474);
|
|
this.modeComboBox.Name = "modeComboBox";
|
|
this.modeComboBox.Size = new System.Drawing.Size(167, 21);
|
|
this.modeComboBox.TabIndex = 1;
|
|
this.modeComboBox.SelectedIndexChanged += new System.EventHandler(this.modeComboBox_SelectedIndexChanged);
|
|
//
|
|
// AsciiChart
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(395, 507);
|
|
this.Controls.Add(this.modeComboBox);
|
|
this.Controls.Add(this.chartTextBox);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AsciiChart";
|
|
this.Text = "ASCII Chart";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AsciiChart_FormClosed);
|
|
this.Load += new System.EventHandler(this.AsciiChart_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox chartTextBox;
|
|
private System.Windows.Forms.ComboBox modeComboBox;
|
|
}
|
|
} |