127 lines
5.2 KiB
C#
127 lines
5.2 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class EditCommentsForm
|
|
{
|
|
/// <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.Cancel = new System.Windows.Forms.Button();
|
|
this.OK = new System.Windows.Forms.Button();
|
|
this.CommentGrid = new System.Windows.Forms.DataGridView();
|
|
this.Comment = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SaveBtn = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.CommentGrid)).BeginInit();
|
|
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(399, 267);
|
|
this.Cancel.Name = "Cancel";
|
|
this.Cancel.Size = new System.Drawing.Size(60, 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(333, 267);
|
|
this.OK.Name = "OK";
|
|
this.OK.Size = new System.Drawing.Size(60, 23);
|
|
this.OK.TabIndex = 1;
|
|
this.OK.Text = "&OK";
|
|
this.OK.UseVisualStyleBackColor = true;
|
|
this.OK.Click += new System.EventHandler(this.Ok_Click);
|
|
//
|
|
// CommentGrid
|
|
//
|
|
this.CommentGrid.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.CommentGrid.BackgroundColor = System.Drawing.SystemColors.ControlLight;
|
|
this.CommentGrid.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
|
this.CommentGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.CommentGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Comment});
|
|
this.CommentGrid.Location = new System.Drawing.Point(12, 12);
|
|
this.CommentGrid.Name = "CommentGrid";
|
|
this.CommentGrid.Size = new System.Drawing.Size(447, 249);
|
|
this.CommentGrid.TabIndex = 2;
|
|
this.CommentGrid.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.OnColumnHeaderMouseClick);
|
|
//
|
|
// Comment
|
|
//
|
|
this.Comment.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.Comment.HeaderText = "Comment";
|
|
this.Comment.MaxInputLength = 512;
|
|
this.Comment.MinimumWidth = 100;
|
|
this.Comment.Name = "Comment";
|
|
//
|
|
// SaveBtn
|
|
//
|
|
this.SaveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.SaveBtn.Location = new System.Drawing.Point(12, 267);
|
|
this.SaveBtn.Name = "SaveBtn";
|
|
this.SaveBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.SaveBtn.TabIndex = 3;
|
|
this.SaveBtn.Text = "&Save";
|
|
this.SaveBtn.UseVisualStyleBackColor = true;
|
|
this.SaveBtn.Click += new System.EventHandler(this.SaveBtn_Click);
|
|
//
|
|
// EditCommentsForm
|
|
//
|
|
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(471, 302);
|
|
this.Controls.Add(this.SaveBtn);
|
|
this.Controls.Add(this.CommentGrid);
|
|
this.Controls.Add(this.OK);
|
|
this.Controls.Add(this.Cancel);
|
|
this.Icon = global::BizHawk.Client.EmuHawk.Properties.Resources.TAStudio_MultiSize;
|
|
this.MinimumSize = new System.Drawing.Size(188, 121);
|
|
this.Name = "EditCommentsForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Edit Comments";
|
|
this.Load += new System.EventHandler(this.EditCommentsForm_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.CommentGrid)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button Cancel;
|
|
private System.Windows.Forms.Button OK;
|
|
private System.Windows.Forms.DataGridView CommentGrid;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Comment;
|
|
private System.Windows.Forms.Button SaveBtn;
|
|
}
|
|
} |