C#怎么获取窗体的坐标并限制组件不能移动出窗体的范围?

比如我有一个按钮,每当点击时会想下、右各移动5,那么我怎么限制它不能移出窗体的范围呢?... 比如我有一个按钮,每当点击时会想下、右各移动5,那么我怎么限制它不能移出窗体的范围呢? 展开
 我来答
ClaudeHye
2013-05-03 · TA获得超过249个赞
知道答主
回答量:71
采纳率:0%
帮助的人:23.1万
展开全部
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,就不要移动了。
哲事姓无
2013-05-03 · TA获得超过1176个赞
知道小有建树答主
回答量:903
采纳率:100%
帮助的人:437万
展开全部
[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);
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式