代码拉取完成,页面将自动刷新
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
namespace JiaowuHelper
{
class Postion
{
public static Point getPostion(Form form, float LeftRight, float UpDown, Form parent)
{
Point point = new Point();
int width, height, x, y;
if (parent != null)
{
x = parent.Location.X;
y = parent.Location.Y;
width = parent.Width;
height = parent.Height;
}
else
{
x = y = 0;
width = Screen.PrimaryScreen.WorkingArea.Width;
height = Screen.PrimaryScreen.WorkingArea.Height;
}
point.X = x + Math.Abs((int)(LeftRight * (width - form.Width)));
point.Y = y + Math.Abs((int)(UpDown * (height - form.Height)));
return point;
}
public static Point getPostion(Form form, float LeftRight, float UpDown)
{
return getPostion(form, LeftRight, UpDown, null);
}
public static Point getRightDown(Form form, int right, int down)
{
Point point = new Point();
int width, height;
width = Screen.PrimaryScreen.WorkingArea.Width;
height = Screen.PrimaryScreen.WorkingArea.Height;
if (right < 0)
point.X = -right;
else
point.X = width - form.Width - right;
if (down < 0)
point.Y = -down;
else
point.Y = height - form.Height - down;
return point;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。