mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 02:32:04 -08:00
111 lines
4.5 KiB
C#
111 lines
4.5 KiB
C#
/*
|
|
* InputBox.designer.cs
|
|
* Copyright (c) 2007, 2008 kbinani
|
|
*
|
|
* This file is part of LipSync.
|
|
*
|
|
* LipSync is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* LipSync is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
namespace Plugin {
|
|
partial class InputBox {
|
|
/// <summary>
|
|
/// 必要なデザイナ変数です。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 使用中のリソースをすべてクリーンアップします。
|
|
/// </summary>
|
|
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
|
|
protected override void Dispose( bool disposing ) {
|
|
if ( disposing && (components != null) ) {
|
|
components.Dispose();
|
|
}
|
|
base.Dispose( disposing );
|
|
}
|
|
|
|
#region Windows フォーム デザイナで生成されたコード
|
|
|
|
/// <summary>
|
|
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
|
|
/// コード エディタで変更しないでください。
|
|
/// </summary>
|
|
private void InitializeComponent() {
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.message = new System.Windows.Forms.Label();
|
|
this.input = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point( 114, 73 );
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size( 75, 23 );
|
|
this.btnOK.TabIndex = 1;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler( this.btnOK_Click );
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point( 208, 73 );
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size( 75, 23 );
|
|
this.btnCancel.TabIndex = 2;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// message
|
|
//
|
|
this.message.AutoEllipsis = true;
|
|
this.message.AutoSize = true;
|
|
this.message.Location = new System.Drawing.Point( 12, 9 );
|
|
this.message.Name = "message";
|
|
this.message.Size = new System.Drawing.Size( 50, 12 );
|
|
this.message.TabIndex = 2;
|
|
this.message.Text = "message";
|
|
//
|
|
// input
|
|
//
|
|
this.input.ImeMode = System.Windows.Forms.ImeMode.NoControl;
|
|
this.input.Location = new System.Drawing.Point( 29, 35 );
|
|
this.input.Name = "input";
|
|
this.input.Size = new System.Drawing.Size( 254, 19 );
|
|
this.input.TabIndex = 0;
|
|
//
|
|
// InputBox
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 12F );
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size( 298, 113 );
|
|
this.Controls.Add( this.input );
|
|
this.Controls.Add( this.message );
|
|
this.Controls.Add( this.btnCancel );
|
|
this.Controls.Add( this.btnOK );
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "InputBox";
|
|
this.Text = "InputBox";
|
|
this.ResumeLayout( false );
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Label message;
|
|
private System.Windows.Forms.TextBox input;
|
|
}
|
|
} |