Windows フォームを開いたときに、画面の左上ではなく右下に配置するにはどうすればよいですか?
状況:実際にはフォームとして何もしないForm1があります。コンテキスト メニューに使用しただけです (私のアプリはトレイからのみ動作します)。そのため、主な実行コードのほとんどは Form1 クラスに入ります。コンテキスト メニューがクリックされると、何らかの処理が行われ、最終的にForm2が表示されます。したがって、Form2はForm1のコンテキスト メニュー項目によって開かれる/呼び出されます。この場合、Form2 の位置を変更するにはどうすればよいですか?
Form1.cs ( Form2がトリガーされる部分)
private void menu_upload_file_Click(object sender, EventArgs e)
{
DialogResult dialogOpened = openFileDialog1.ShowDialog();
if (dialogOpened == DialogResult.OK)
{
string filename = openFileDialog1.FileName;
using (var client = new WebClient())
{
var response = client.UploadFile("http://localhost/imgitv3/upload.php?submit=true&action=upload&request=app", "POST", filename);
// string path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + Path.DirectorySeparatorChar + "response.txt";
if (response != null)
{
string responseContent = System.Text.Encoding.ASCII.GetString(response);
Form2 linkWindow = new Form2();
if (isURL(responseContent))
{
linkWindow.toTextBox(responseContent);
linkWindow.Show();
}
}
}
}
}
Form2.Designer.cs
//
// Form2
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CausesValidation = false;
this.ClientSize = new System.Drawing.Size(419, 163);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(435, 202);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(435, 202);
this.Name = "Form2";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "IMGit Image Uploader";
this.TopMost = true;
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.Form2_Load);
this.ResumeLayout(false);
this.PerformLayout();