1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
#if CSHARP
namespace org.kbinani.cadencii
{
partial class ExceptionNotifyFormUiImpl
{
/// <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.textMessage = new System.Windows.Forms.TextBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSend = new System.Windows.Forms.Button();
this.labelDescription = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// textMessage
//
this.textMessage.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.textMessage.Location = new System.Drawing.Point( 22, 46 );
this.textMessage.Multiline = true;
this.textMessage.Name = "textMessage";
this.textMessage.ReadOnly = true;
this.textMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textMessage.Size = new System.Drawing.Size( 328, 268 );
this.textMessage.TabIndex = 0;
this.textMessage.WordWrap = false;
//
// buttonCancel
//
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point( 22, 339 );
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size( 75, 23 );
this.buttonCancel.TabIndex = 0;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler( this.buttonCancel_Click );
//
// buttonSend
//
this.buttonSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonSend.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonSend.Location = new System.Drawing.Point( 223, 339 );
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size( 127, 23 );
this.buttonSend.TabIndex = 1;
this.buttonSend.Text = "Send";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler( this.buttonSend_Click );
//
// labelDescription
//
this.labelDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelDescription.Location = new System.Drawing.Point( 22, 18 );
this.labelDescription.Name = "labelDescription";
this.labelDescription.Size = new System.Drawing.Size( 328, 25 );
this.labelDescription.TabIndex = 6;
//
// ExceptionNotifyFormUiImpl
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 12F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 373, 396 );
this.Controls.Add( this.labelDescription );
this.Controls.Add( this.buttonCancel );
this.Controls.Add( this.buttonSend );
this.Controls.Add( this.textMessage );
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExceptionNotifyFormUiImpl";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "ExceptionNotifyFormUiImpl";
this.ResumeLayout( false );
this.PerformLayout();
}
#endregion
protected System.Windows.Forms.TextBox textMessage;
protected System.Windows.Forms.Button buttonCancel;
protected System.Windows.Forms.Button buttonSend;
protected System.Windows.Forms.Label labelDescription;
}
}
#endif
|