xenia/src/Xenia.Debug.UI/Views/FunctionsPanel.Designer.cs

89 lines
4.1 KiB
C#
Raw Normal View History

2015-05-22 23:58:56 +02:00
namespace Xenia.Debug.UI.Views {
partial class FunctionsPanel {
2015-05-03 19:25:16 +02:00
/// <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() {
2015-05-24 22:43:15 +02:00
this.modulesComboBox = new System.Windows.Forms.ComboBox();
this.filterTextBox = new System.Windows.Forms.TextBox();
this.functionsListBox = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// modulesComboBox
2015-05-24 22:43:15 +02:00
//
this.modulesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.modulesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2015-05-24 22:43:15 +02:00
this.modulesComboBox.FormattingEnabled = true;
this.modulesComboBox.Location = new System.Drawing.Point(12, 12);
this.modulesComboBox.Name = "modulesComboBox";
2015-05-24 22:43:15 +02:00
this.modulesComboBox.Size = new System.Drawing.Size(234, 21);
this.modulesComboBox.TabIndex = 0;
this.modulesComboBox.SelectedIndexChanged += new System.EventHandler(this.modulesComboBox_SelectedIndexChanged);
2015-05-24 22:43:15 +02:00
//
// filterTextBox
//
this.filterTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.filterTextBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.filterTextBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
this.filterTextBox.Location = new System.Drawing.Point(12, 569);
this.filterTextBox.Name = "filterTextBox";
this.filterTextBox.Size = new System.Drawing.Size(234, 20);
this.filterTextBox.TabIndex = 1;
this.filterTextBox.TextChanged += new System.EventHandler(this.filterTextBox_TextChanged);
2015-05-24 22:43:15 +02:00
//
// functionsListBox
//
this.functionsListBox.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.functionsListBox.FormattingEnabled = true;
this.functionsListBox.Location = new System.Drawing.Point(12, 39);
this.functionsListBox.Name = "functionsListBox";
this.functionsListBox.Size = new System.Drawing.Size(234, 524);
this.functionsListBox.TabIndex = 2;
this.functionsListBox.SelectedIndexChanged += new System.EventHandler(this.functionsListBox_SelectedIndexChanged);
2015-05-24 22:43:15 +02:00
//
// FunctionsPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
2015-05-03 19:25:16 +02:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2015-05-24 22:43:15 +02:00
this.ClientSize = new System.Drawing.Size(258, 600);
this.Controls.Add(this.functionsListBox);
this.Controls.Add(this.filterTextBox);
this.Controls.Add(this.modulesComboBox);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2015-05-24 22:43:15 +02:00
this.Name = "FunctionsPanel";
2015-05-22 23:58:56 +02:00
this.Text = "Functions";
2015-05-24 22:43:15 +02:00
this.ResumeLayout(false);
this.PerformLayout();
2015-05-03 19:25:16 +02:00
}
#endregion
2015-05-24 22:43:15 +02:00
private System.Windows.Forms.ComboBox modulesComboBox;
private System.Windows.Forms.TextBox filterTextBox;
private System.Windows.Forms.ListBox functionsListBox;
2015-05-03 19:25:16 +02:00
}
2015-05-22 23:58:56 +02:00
}