lipsync/trunk/LipSync/Editor/PasteModeDialog.Designer.cs

115 lines
4.9 KiB
C#

/*
* PasteModeDialog.Designer.cs
* Copyright (c) 2007-2009 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 LipSync {
partial class PasteModeDialog {
/// <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.btnInterrupt = new System.Windows.Forms.Button();
this.btnOverwrite = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnInterrupt
//
this.btnInterrupt.Location = new System.Drawing.Point( 12, 56 );
this.btnInterrupt.Name = "btnInterrupt";
this.btnInterrupt.Size = new System.Drawing.Size( 88, 23 );
this.btnInterrupt.TabIndex = 6;
this.btnInterrupt.Text = "割り込ませる";
this.btnInterrupt.UseVisualStyleBackColor = true;
this.btnInterrupt.Click += new System.EventHandler( this.btnInterrupt_Click );
//
// btnOverwrite
//
this.btnOverwrite.Location = new System.Drawing.Point( 119, 56 );
this.btnOverwrite.Name = "btnOverwrite";
this.btnOverwrite.Size = new System.Drawing.Size( 88, 23 );
this.btnOverwrite.TabIndex = 7;
this.btnOverwrite.Text = "上書き";
this.btnOverwrite.UseVisualStyleBackColor = true;
this.btnOverwrite.Click += new System.EventHandler( this.btnOverwrite_Click );
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point( 226, 56 );
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size( 88, 23 );
this.btnCancel.TabIndex = 8;
this.btnCancel.Text = "キャンセル";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler( this.btnCancel_Click );
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point( 22, 23 );
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size( 151, 12 );
this.label1.TabIndex = 9;
this.label1.Text = "貼付けモードを指定してください";
//
// PasteModeDialog
//
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( 329, 107 );
this.Controls.Add( this.label1 );
this.Controls.Add( this.btnCancel );
this.Controls.Add( this.btnOverwrite );
this.Controls.Add( this.btnInterrupt );
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PasteModeDialog";
this.ShowInTaskbar = false;
this.Text = "PasteMode";
this.ResumeLayout( false );
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnInterrupt;
private System.Windows.Forms.Button btnOverwrite;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label1;
}
}