Add missing files

master
1987kostya 4 years ago
parent 117c9cb94a
commit 0cac8a6f74

@ -0,0 +1,101 @@
using System.ComponentModel;
namespace DotNetCTFDumper.GUI
{
partial class MFABuilderForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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(MFABuilderForm));
this.logBox = new System.Windows.Forms.TextBox();
this.DumpButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// logBox
//
this.logBox.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right)));
this.logBox.BackColor = System.Drawing.Color.Black;
this.logBox.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
this.logBox.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
this.logBox.Location = new System.Drawing.Point(384, 12);
this.logBox.Multiline = true;
this.logBox.Name = "logBox";
this.logBox.ReadOnly = true;
this.logBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.logBox.Size = new System.Drawing.Size(222, 299);
this.logBox.TabIndex = 0;
//
// DumpButton
//
this.DumpButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.DumpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.DumpButton.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
this.DumpButton.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
this.DumpButton.Location = new System.Drawing.Point(12, 266);
this.DumpButton.Name = "DumpButton";
this.DumpButton.Size = new System.Drawing.Size(99, 45);
this.DumpButton.TabIndex = 1;
this.DumpButton.Text = "Dump MFA";
this.DumpButton.UseVisualStyleBackColor = true;
this.DumpButton.Click += new System.EventHandler(this.DumpButton_Click);
//
// label1
//
this.label1.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
this.label1.Location = new System.Drawing.Point(13, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(365, 88);
this.label1.TabIndex = 2;
this.label1.Text = "Super Ultimate Awesome Wonderful Decompiler";
//
// MFABuilderForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(618, 323);
this.Controls.Add(this.label1);
this.Controls.Add(this.DumpButton);
this.Controls.Add(this.logBox);
this.Icon = ((System.Drawing.Icon) (resources.GetObject("$this.Icon")));
this.Name = "MFABuilderForm";
this.Text = "MFABuilderForm";
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button DumpButton;
private System.Windows.Forms.TextBox logBox;
#endregion
}
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save