Files
HeadFrmPatcher/HeadPatcher/HeadsFrmPatcher.designer.cs
T

97 lines
4.2 KiB
C#
Raw Normal View History

2017-04-22 22:02:22 +03:00
namespace HeadsPatcher
{
partial class HeadsFrmPatcher {
/// <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(HeadsFrmPatcher));
this.cbDisableHighlighting = new System.Windows.Forms.CheckBox();
this.cbIncludesBackground = new System.Windows.Forms.CheckBox();
this.bRun = new System.Windows.Forms.Button();
this.ofdFrm = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// cbDisableHighlighting
//
this.cbDisableHighlighting.AutoSize = true;
this.cbDisableHighlighting.Location = new System.Drawing.Point(12, 12);
this.cbDisableHighlighting.Name = "cbDisableHighlighting";
2019-04-23 02:52:13 +03:00
this.cbDisableHighlighting.Size = new System.Drawing.Size(141, 17);
2017-04-22 22:02:22 +03:00
this.cbDisableHighlighting.TabIndex = 3;
2019-04-23 02:52:13 +03:00
this.cbDisableHighlighting.Text = "Disable corner highlights";
2017-04-22 22:02:22 +03:00
this.cbDisableHighlighting.UseVisualStyleBackColor = true;
//
// cbIncludesBackground
//
this.cbIncludesBackground.AutoSize = true;
this.cbIncludesBackground.Location = new System.Drawing.Point(12, 35);
this.cbIncludesBackground.Name = "cbIncludesBackground";
2019-04-23 02:52:13 +03:00
this.cbIncludesBackground.Size = new System.Drawing.Size(154, 17);
2017-04-22 22:02:22 +03:00
this.cbIncludesBackground.TabIndex = 6;
2019-04-23 02:52:13 +03:00
this.cbIncludesBackground.Text = "Fill transparent background";
2017-04-22 22:02:22 +03:00
this.cbIncludesBackground.UseVisualStyleBackColor = true;
//
// bRun
//
2022-03-16 12:52:28 +08:00
this.bRun.Location = new System.Drawing.Point(74, 60);
2017-04-22 22:02:22 +03:00
this.bRun.Name = "bRun";
this.bRun.Size = new System.Drawing.Size(75, 23);
this.bRun.TabIndex = 10;
this.bRun.Text = "Run";
this.bRun.UseVisualStyleBackColor = true;
this.bRun.Click += new System.EventHandler(this.bRun_Click);
//
// ofdFrm
//
2022-03-16 12:52:28 +08:00
this.ofdFrm.Filter = "Fallout FRM files|*.frm";
2017-04-22 22:02:22 +03:00
this.ofdFrm.Multiselect = true;
this.ofdFrm.RestoreDirectory = true;
2022-03-16 12:52:28 +08:00
this.ofdFrm.Title = "Select FRM to patch";
2017-04-22 22:02:22 +03:00
//
// HeadsFrmPatcher
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(224, 95);
this.Controls.Add(this.bRun);
this.Controls.Add(this.cbIncludesBackground);
this.Controls.Add(this.cbDisableHighlighting);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "HeadsFrmPatcher";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
2022-03-16 12:52:28 +08:00
this.Text = "Head FRM File Patcher";
2017-04-22 22:02:22 +03:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox cbDisableHighlighting;
private System.Windows.Forms.CheckBox cbIncludesBackground;
private System.Windows.Forms.Button bRun;
private System.Windows.Forms.OpenFileDialog ofdFrm;
}
}