MainForm.Designer.cs
namespace MidiOutExample
{
partial class MainForm
{
/// <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 (controller != null)
{
controller.Dispose();
controller = null;
}
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.cmbDevices = new System.Windows.Forms.ComboBox();
this.cmbChannel = new System.Windows.Forms.ComboBox();
this.cmbInstrument = new System.Windows.Forms.ComboBox();
this.boxKeys = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.boxKeys)).BeginInit();
this.SuspendLayout();
//
// cmbDevices
//
this.cmbDevices.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cmbDevices.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbDevices.FormattingEnabled = true;
this.cmbDevices.Location = new System.Drawing.Point(12, 12);
this.cmbDevices.Name = "cmbDevices";
this.cmbDevices.Size = new System.Drawing.Size(512, 21);
this.cmbDevices.TabIndex = 0;
this.cmbDevices.SelectedIndexChanged += new System.EventHandler(this.cmbDevices_SelectedIndexChanged);
//
// cmbChannel
//
this.cmbChannel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbChannel.FormattingEnabled = true;
this.cmbChannel.Location = new System.Drawing.Point(14, 44);
this.cmbChannel.Name = "cmbChannel";
this.cmbChannel.Size = new System.Drawing.Size(166, 21);
this.cmbChannel.TabIndex = 1;
this.cmbChannel.SelectedIndexChanged += new System.EventHandler(this.cmbChannel_SelectedIndexChanged);
//
// cmbInstrument
//
this.cmbInstrument.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cmbInstrument.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbInstrument.FormattingEnabled = true;
this.cmbInstrument.Location = new System.Drawing.Point(190, 44);
this.cmbInstrument.Name = "cmbInstrument";
this.cmbInstrument.Size = new System.Drawing.Size(334, 21);
this.cmbInstrument.TabIndex = 2;
this.cmbInstrument.SelectedIndexChanged += new System.EventHandler(this.cmbInstrument_SelectedIndexChanged);
//
// boxKeys
//
this.boxKeys.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.boxKeys.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.boxKeys.Location = new System.Drawing.Point(13, 71);
this.boxKeys.Name = "boxKeys";
this.boxKeys.Size = new System.Drawing.Size(511, 84);
this.boxKeys.TabIndex = 3;
this.boxKeys.TabStop = false;
this.boxKeys.MouseMove += new System.Windows.Forms.MouseEventHandler(this.boxKeys_MouseMove);
this.boxKeys.MouseDown += new System.Windows.Forms.MouseEventHandler(this.boxKeys_MouseDown);
this.boxKeys.Paint += new System.Windows.Forms.PaintEventHandler(this.boxKeys_Paint);
this.boxKeys.MouseUp += new System.Windows.Forms.MouseEventHandler(this.boxKeys_MouseUp);
this.boxKeys.SizeChanged += new System.EventHandler(this.boxKeys_SizeChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(536, 167);
this.Controls.Add(this.boxKeys);
this.Controls.Add(this.cmbChannel);
this.Controls.Add(this.cmbInstrument);
this.Controls.Add(this.cmbDevices);
this.Icon = System.Drawing.Icon.FromHandle(Properties.Resources.Icon.GetHicon());
this.MinimumSize = new System.Drawing.Size(536, 167);
this.Name = "MainForm";
this.Text = "Use mouse and [Shift/Ctrl] to play music";
((System.ComponentModel.ISupportInitialize)(this.boxKeys)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox cmbDevices;
private System.Windows.Forms.ComboBox cmbChannel;
private System.Windows.Forms.ComboBox cmbInstrument;
private System.Windows.Forms.PictureBox boxKeys;
}
}