C#怎么获取窗体的坐标并限制组件不能移动出窗体的范围?
2个回答
展开全部
WinForm的可显示控件都有一个Container,比如你直接在窗体里加了个button,那么这个button的Container就是窗体本身,如果把button放到了panel里,那他的容器就是它所在的这个panel;控件(当然包括button)有个location属性,就是对应于它的Container的左上角的坐标。你可以在控件LocationChanged事件里进行判断,比如:(button.Location.X + button.Location.Width) > Container.Width || (button.Location.Y + button.Location.Height) > Container.Hieht,就不要移动了。
展开全部
[STAThread]
public static void Main(string[] args)
{
var button = new Button();
button.Text = "我是测试按钮";
button.Size = new Size(120, 25);
button.Click += ButtonOnClick;
var form = new Form();
form.Controls.Add(button);
form.ShowDialog();
}
/// <summary>
/// 按钮点击事件处理
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private static void ButtonOnClick(object sender, EventArgs e)
{
var button = (Button) sender;
var parent = button.Parent;
var butRight = Math.Min(button.Right + 5, parent.ClientSize.Width);
var butBottom = Math.Min(button.Bottom + 5, parent.ClientSize.Height);
button.Location = new Point(butRight - button.Width, butBottom - button.Height);
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询