有一个悬浮窗FlowMon,初始化代码如下:
 private void FlowMon_Load(object sender, EventArgs e)
        {
            this.Show();
            this.Top = 300;
            this.Left = Screen.PrimaryScreen.Bounds.Width - 600;
            this.Opacity = 1.0;
        }
该怎么表示它离屏幕上边界和右边界的距离?