189 lines
9.2 KiB
C#
189 lines
9.2 KiB
C#
namespace PdbFind.Gui
|
|
{
|
|
partial class FormPdbFind
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.textBoxSysStore = new System.Windows.Forms.TextBox();
|
|
this.buttonSymStoreBrowse = new System.Windows.Forms.Button();
|
|
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
|
this.textBoxPeFile = new System.Windows.Forms.TextBox();
|
|
this.buttonPeFileBrowse = new System.Windows.Forms.Button();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.textBoxPdbFile = new System.Windows.Forms.TextBox();
|
|
this.buttonPdbExplore = new System.Windows.Forms.Button();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.buttonLocatePdb = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(77, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Symbol Store";
|
|
//
|
|
// textBoxSysStore
|
|
//
|
|
this.textBoxSysStore.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBoxSysStore.Location = new System.Drawing.Point(157, 12);
|
|
this.textBoxSysStore.Name = "textBoxSysStore";
|
|
this.textBoxSysStore.Size = new System.Drawing.Size(512, 23);
|
|
this.textBoxSysStore.TabIndex = 1;
|
|
//
|
|
// buttonSymStoreBrowse
|
|
//
|
|
this.buttonSymStoreBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonSymStoreBrowse.Location = new System.Drawing.Point(675, 12);
|
|
this.buttonSymStoreBrowse.Name = "buttonSymStoreBrowse";
|
|
this.buttonSymStoreBrowse.Size = new System.Drawing.Size(113, 23);
|
|
this.buttonSymStoreBrowse.TabIndex = 2;
|
|
this.buttonSymStoreBrowse.Text = "Browse";
|
|
this.buttonSymStoreBrowse.UseVisualStyleBackColor = true;
|
|
this.buttonSymStoreBrowse.Click += new System.EventHandler(this.buttonSymStoreBrowse_Click);
|
|
//
|
|
// notifyIcon1
|
|
//
|
|
this.notifyIcon1.Text = "notifyIcon1";
|
|
this.notifyIcon1.Visible = true;
|
|
//
|
|
// textBoxPeFile
|
|
//
|
|
this.textBoxPeFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBoxPeFile.Location = new System.Drawing.Point(157, 41);
|
|
this.textBoxPeFile.Name = "textBoxPeFile";
|
|
this.textBoxPeFile.Size = new System.Drawing.Size(512, 23);
|
|
this.textBoxPeFile.TabIndex = 3;
|
|
this.textBoxPeFile.TextChanged += new System.EventHandler(this.textBoxPeFile_TextChanged);
|
|
//
|
|
// buttonPeFileBrowse
|
|
//
|
|
this.buttonPeFileBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonPeFileBrowse.Location = new System.Drawing.Point(675, 41);
|
|
this.buttonPeFileBrowse.Name = "buttonPeFileBrowse";
|
|
this.buttonPeFileBrowse.Size = new System.Drawing.Size(113, 23);
|
|
this.buttonPeFileBrowse.TabIndex = 4;
|
|
this.buttonPeFileBrowse.Text = "Browse";
|
|
this.buttonPeFileBrowse.UseVisualStyleBackColor = true;
|
|
this.buttonPeFileBrowse.Click += new System.EventHandler(this.buttonPeFileBrowse_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 45);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(41, 15);
|
|
this.label2.TabIndex = 5;
|
|
this.label2.Text = "PE File";
|
|
//
|
|
// textBoxPdbFile
|
|
//
|
|
this.textBoxPdbFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBoxPdbFile.Location = new System.Drawing.Point(157, 99);
|
|
this.textBoxPdbFile.Name = "textBoxPdbFile";
|
|
this.textBoxPdbFile.ReadOnly = true;
|
|
this.textBoxPdbFile.Size = new System.Drawing.Size(512, 23);
|
|
this.textBoxPdbFile.TabIndex = 6;
|
|
//
|
|
// buttonPdbExplore
|
|
//
|
|
this.buttonPdbExplore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonPdbExplore.Location = new System.Drawing.Point(675, 99);
|
|
this.buttonPdbExplore.Name = "buttonPdbExplore";
|
|
this.buttonPdbExplore.Size = new System.Drawing.Size(113, 23);
|
|
this.buttonPdbExplore.TabIndex = 7;
|
|
this.buttonPdbExplore.Text = "Show in Explorer";
|
|
this.buttonPdbExplore.UseVisualStyleBackColor = true;
|
|
this.buttonPdbExplore.Click += new System.EventHandler(this.buttonPdbExplore_Click);
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(12, 102);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(50, 15);
|
|
this.label3.TabIndex = 8;
|
|
this.label3.Text = "PDB File";
|
|
//
|
|
// buttonLocatePdb
|
|
//
|
|
this.buttonLocatePdb.Location = new System.Drawing.Point(157, 70);
|
|
this.buttonLocatePdb.Name = "buttonLocatePdb";
|
|
this.buttonLocatePdb.Size = new System.Drawing.Size(113, 23);
|
|
this.buttonLocatePdb.TabIndex = 9;
|
|
this.buttonLocatePdb.Text = "Locate PDB";
|
|
this.buttonLocatePdb.UseVisualStyleBackColor = true;
|
|
this.buttonLocatePdb.Click += new System.EventHandler(this.buttonLocatePdb_Click);
|
|
//
|
|
// FormPdbFind
|
|
//
|
|
this.AllowDrop = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(800, 145);
|
|
this.Controls.Add(this.buttonLocatePdb);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.buttonPdbExplore);
|
|
this.Controls.Add(this.textBoxPdbFile);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.buttonPeFileBrowse);
|
|
this.Controls.Add(this.textBoxPeFile);
|
|
this.Controls.Add(this.buttonSymStoreBrowse);
|
|
this.Controls.Add(this.textBoxSysStore);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FormPdbFind";
|
|
this.Text = "Pdb Find";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormPdbFind_FormClosed);
|
|
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.FormPdbFind_DragDrop);
|
|
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.FormPdbFind_DragEnter);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private TextBox textBoxSysStore;
|
|
private Button buttonSymStoreBrowse;
|
|
private NotifyIcon notifyIcon1;
|
|
private TextBox textBoxPeFile;
|
|
private Button buttonPeFileBrowse;
|
|
private Label label2;
|
|
private TextBox textBoxPdbFile;
|
|
private Button buttonPdbExplore;
|
|
private Label label3;
|
|
private Button buttonLocatePdb;
|
|
}
|
|
} |