| 1 |
namespace TransparentizePutty |
| 2 |
{ |
| 3 |
partial class SettingForm |
| 4 |
{ |
| 5 |
/// <summary> |
| 6 |
/// 必要なデザイナ変数です。 |
| 7 |
/// </summary> |
| 8 |
private System.ComponentModel.IContainer components = null; |
| 9 |
|
| 10 |
/// <summary> |
| 11 |
/// 使用中のリソースをすべてクリーンアップします。 |
| 12 |
/// </summary> |
| 13 |
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param> |
| 14 |
protected override void Dispose(bool disposing) { |
| 15 |
if (disposing && (components != null)) { |
| 16 |
components.Dispose(); |
| 17 |
} |
| 18 |
base.Dispose(disposing); |
| 19 |
} |
| 20 |
|
| 21 |
#region Windows フォーム デザイナで生成されたコード |
| 22 |
|
| 23 |
/// <summary> |
| 24 |
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を |
| 25 |
/// コード エディタで変更しないでください。 |
| 26 |
/// </summary> |
| 27 |
private void InitializeComponent() { |
| 28 |
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingForm)); |
| 29 |
this.buttonOk = new System.Windows.Forms.Button(); |
| 30 |
this.label1 = new System.Windows.Forms.Label(); |
| 31 |
this.numTransparent = new System.Windows.Forms.NumericUpDown(); |
| 32 |
this.chkNotTransparentPuttySetting = new System.Windows.Forms.CheckBox(); |
| 33 |
this.groupBox1 = new System.Windows.Forms.GroupBox(); |
| 34 |
this.buttonCancel = new System.Windows.Forms.Button(); |
| 35 |
this.linkLabel = new System.Windows.Forms.LinkLabel(); |
| 36 |
((System.ComponentModel.ISupportInitialize)(this.numTransparent)).BeginInit(); |
| 37 |
this.groupBox1.SuspendLayout(); |
| 38 |
this.SuspendLayout(); |
| 39 |
// |
| 40 |
// buttonOk |
| 41 |
// |
| 42 |
this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
| 43 |
this.buttonOk.Location = new System.Drawing.Point(168, 128); |
| 44 |
this.buttonOk.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 45 |
this.buttonOk.Name = "buttonOk"; |
| 46 |
this.buttonOk.Size = new System.Drawing.Size(103, 32); |
| 47 |
this.buttonOk.TabIndex = 7; |
| 48 |
this.buttonOk.Text = "OK"; |
| 49 |
this.buttonOk.UseVisualStyleBackColor = true; |
| 50 |
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); |
| 51 |
// |
| 52 |
// label1 |
| 53 |
// |
| 54 |
this.label1.Location = new System.Drawing.Point(8, 24); |
| 55 |
this.label1.Name = "label1"; |
| 56 |
this.label1.Size = new System.Drawing.Size(121, 30); |
| 57 |
this.label1.TabIndex = 1; |
| 58 |
this.label1.Text = "透過度 (0-254) : "; |
| 59 |
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| 60 |
// |
| 61 |
// numTransparent |
| 62 |
// |
| 63 |
this.numTransparent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
| 64 |
this.numTransparent.Location = new System.Drawing.Point(295, 24); |
| 65 |
this.numTransparent.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 66 |
this.numTransparent.Maximum = new decimal(new int[] { |
| 67 |
254, |
| 68 |
0, |
| 69 |
0, |
| 70 |
0}); |
| 71 |
this.numTransparent.Name = "numTransparent"; |
| 72 |
this.numTransparent.Size = new System.Drawing.Size(65, 25); |
| 73 |
this.numTransparent.TabIndex = 2; |
| 74 |
this.numTransparent.Value = new decimal(new int[] { |
| 75 |
210, |
| 76 |
0, |
| 77 |
0, |
| 78 |
0}); |
| 79 |
// |
| 80 |
// chkNotTransparentPuttySetting |
| 81 |
// |
| 82 |
this.chkNotTransparentPuttySetting.AutoSize = true; |
| 83 |
this.chkNotTransparentPuttySetting.Location = new System.Drawing.Point(8, 72); |
| 84 |
this.chkNotTransparentPuttySetting.Name = "chkNotTransparentPuttySetting"; |
| 85 |
this.chkNotTransparentPuttySetting.Size = new System.Drawing.Size(165, 22); |
| 86 |
this.chkNotTransparentPuttySetting.TabIndex = 3; |
| 87 |
this.chkNotTransparentPuttySetting.Text = "PuTTY 設定を透過しない"; |
| 88 |
this.chkNotTransparentPuttySetting.UseVisualStyleBackColor = true; |
| 89 |
// |
| 90 |
// groupBox1 |
| 91 |
// |
| 92 |
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
| 93 |
| System.Windows.Forms.AnchorStyles.Left) |
| 94 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 95 |
this.groupBox1.Controls.Add(this.chkNotTransparentPuttySetting); |
| 96 |
this.groupBox1.Controls.Add(this.numTransparent); |
| 97 |
this.groupBox1.Controls.Add(this.label1); |
| 98 |
this.groupBox1.Location = new System.Drawing.Point(8, 8); |
| 99 |
this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 100 |
this.groupBox1.Name = "groupBox1"; |
| 101 |
this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 102 |
this.groupBox1.Size = new System.Drawing.Size(376, 113); |
| 103 |
this.groupBox1.TabIndex = 6; |
| 104 |
this.groupBox1.TabStop = false; |
| 105 |
this.groupBox1.Text = "設定"; |
| 106 |
// |
| 107 |
// buttonCancel |
| 108 |
// |
| 109 |
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
| 110 |
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; |
| 111 |
this.buttonCancel.Location = new System.Drawing.Point(280, 128); |
| 112 |
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 113 |
this.buttonCancel.Name = "buttonCancel"; |
| 114 |
this.buttonCancel.Size = new System.Drawing.Size(103, 32); |
| 115 |
this.buttonCancel.TabIndex = 8; |
| 116 |
this.buttonCancel.Text = "キャンセル"; |
| 117 |
this.buttonCancel.UseVisualStyleBackColor = true; |
| 118 |
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); |
| 119 |
// |
| 120 |
// linkLabel |
| 121 |
// |
| 122 |
this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); |
| 123 |
this.linkLabel.AutoSize = true; |
| 124 |
this.linkLabel.Location = new System.Drawing.Point(8, 136); |
| 125 |
this.linkLabel.Name = "linkLabel"; |
| 126 |
this.linkLabel.Size = new System.Drawing.Size(129, 18); |
| 127 |
this.linkLabel.TabIndex = 9; |
| 128 |
this.linkLabel.TabStop = true; |
| 129 |
this.linkLabel.Text = "© 2012-2013 yuuAn."; |
| 130 |
this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked); |
| 131 |
// |
| 132 |
// SettingForm |
| 133 |
// |
| 134 |
this.AcceptButton = this.buttonOk; |
| 135 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 18F); |
| 136 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
| 137 |
this.CancelButton = this.buttonCancel; |
| 138 |
this.ClientSize = new System.Drawing.Size(394, 172); |
| 139 |
this.Controls.Add(this.linkLabel); |
| 140 |
this.Controls.Add(this.buttonCancel); |
| 141 |
this.Controls.Add(this.groupBox1); |
| 142 |
this.Controls.Add(this.buttonOk); |
| 143 |
this.Font = new System.Drawing.Font("メイリオ", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
| 144 |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
| 145 |
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); |
| 146 |
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
| 147 |
this.MaximizeBox = false; |
| 148 |
this.MinimizeBox = false; |
| 149 |
this.Name = "SettingForm"; |
| 150 |
this.Text = "とらぷてぃ。 v.1.6"; |
| 151 |
this.Load += new System.EventHandler(this.SettingForm_Load); |
| 152 |
((System.ComponentModel.ISupportInitialize)(this.numTransparent)).EndInit(); |
| 153 |
this.groupBox1.ResumeLayout(false); |
| 154 |
this.groupBox1.PerformLayout(); |
| 155 |
this.ResumeLayout(false); |
| 156 |
this.PerformLayout(); |
| 157 |
|
| 158 |
} |
| 159 |
|
| 160 |
#endregion |
| 161 |
|
| 162 |
private System.Windows.Forms.Button buttonOk; |
| 163 |
private System.Windows.Forms.Label label1; |
| 164 |
private System.Windows.Forms.NumericUpDown numTransparent; |
| 165 |
private System.Windows.Forms.CheckBox chkNotTransparentPuttySetting; |
| 166 |
private System.Windows.Forms.GroupBox groupBox1; |
| 167 |
private System.Windows.Forms.Button buttonCancel; |
| 168 |
private System.Windows.Forms.LinkLabel linkLabel; |
| 169 |
|
| 170 |
|
| 171 |
|
| 172 |
|
| 173 |
|
| 174 |
} |
| 175 |
} |