งั้นก็สร้าง Form ใหม่มา 1 Form
จากนั้นใส่ Code นี้ลงไปในส่วน Constructors Code (C#)
public Form1()
{
.
.
.
// set show position bottom right
Rectangle r = Screen.PrimaryScreen.WorkingArea;
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width,
Screen.PrimaryScreen.WorkingArea.Height - this.Height);
this.TopMost = true;
}