143 lines
6.6 KiB
C#
143 lines
6.6 KiB
C#
namespace BizHawk.MultiClient
|
|
{
|
|
partial class RecordMovie
|
|
{
|
|
/// <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(RecordMovie));
|
|
this.Cancel = new System.Windows.Forms.Button();
|
|
this.OK = new System.Windows.Forms.Button();
|
|
this.Browse = new System.Windows.Forms.Button();
|
|
this.RecordBox = new System.Windows.Forms.TextBox();
|
|
this.StartFromCombo = new System.Windows.Forms.ComboBox();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// Cancel
|
|
//
|
|
this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.Cancel.Location = new System.Drawing.Point(282, 238);
|
|
this.Cancel.Name = "Cancel";
|
|
this.Cancel.Size = new System.Drawing.Size(75, 23);
|
|
this.Cancel.TabIndex = 0;
|
|
this.Cancel.Text = "&Cancel";
|
|
this.Cancel.UseVisualStyleBackColor = true;
|
|
this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
|
|
//
|
|
// OK
|
|
//
|
|
this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.OK.Location = new System.Drawing.Point(190, 238);
|
|
this.OK.Name = "OK";
|
|
this.OK.Size = new System.Drawing.Size(75, 23);
|
|
this.OK.TabIndex = 1;
|
|
this.OK.Text = "&Ok";
|
|
this.OK.UseVisualStyleBackColor = true;
|
|
this.OK.Click += new System.EventHandler(this.OK_Click);
|
|
//
|
|
// Browse
|
|
//
|
|
this.Browse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.Browse.Location = new System.Drawing.Point(300, 40);
|
|
this.Browse.Name = "Browse";
|
|
this.Browse.Size = new System.Drawing.Size(62, 23);
|
|
this.Browse.TabIndex = 2;
|
|
this.Browse.Text = "&Browse...";
|
|
this.Browse.UseVisualStyleBackColor = true;
|
|
this.Browse.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// RecordBox
|
|
//
|
|
this.RecordBox.AllowDrop = true;
|
|
this.RecordBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.RecordBox.Location = new System.Drawing.Point(13, 40);
|
|
this.RecordBox.Name = "RecordBox";
|
|
this.RecordBox.Size = new System.Drawing.Size(277, 20);
|
|
this.RecordBox.TabIndex = 3;
|
|
this.RecordBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.RecordBox_DragDrop);
|
|
this.RecordBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.RecordBox_DragEnter);
|
|
//
|
|
// StartFromCombo
|
|
//
|
|
this.StartFromCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.StartFromCombo.FormattingEnabled = true;
|
|
this.StartFromCombo.Items.AddRange(new object[] {
|
|
"Power-On",
|
|
"Now"});
|
|
this.StartFromCombo.Location = new System.Drawing.Point(7, 19);
|
|
this.StartFromCombo.MaxDropDownItems = 32;
|
|
this.StartFromCombo.Name = "StartFromCombo";
|
|
this.StartFromCombo.Size = new System.Drawing.Size(161, 21);
|
|
this.StartFromCombo.TabIndex = 4;
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.StartFromCombo);
|
|
this.groupBox1.Location = new System.Drawing.Point(13, 96);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(179, 55);
|
|
this.groupBox1.TabIndex = 5;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Start from";
|
|
//
|
|
// RecordMovie
|
|
//
|
|
this.AcceptButton = this.OK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.Cancel;
|
|
this.ClientSize = new System.Drawing.Size(374, 273);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.RecordBox);
|
|
this.Controls.Add(this.Browse);
|
|
this.Controls.Add(this.OK);
|
|
this.Controls.Add(this.Cancel);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "RecordMovie";
|
|
this.Text = "Record Movie";
|
|
this.Load += new System.EventHandler(this.RecordMovie_Load);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button Cancel;
|
|
private System.Windows.Forms.Button OK;
|
|
private System.Windows.Forms.Button Browse;
|
|
private System.Windows.Forms.TextBox RecordBox;
|
|
private System.Windows.Forms.ComboBox StartFromCombo;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
}
|
|
} |