C# 请问如何获取当前窗体(可以拖动)的位置,从而去确定它所调用的窗体之间的相对位置。
2个回答
展开全部
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.LocationChanged += new System.EventHandler(this.Form1_LocationChanged);
}
private void Form1_LocationChanged(object sender, EventArgs e)
{
this.Text = string.Format("Left={0},Top={1}", this.Left, this.Top);
}
}
更多追问追答
追问
请问这句this.Text = string.Format("Left={0},Top={1}", this.Left, this.Top);是什么意思?
追答
移动窗体的时候,看标题栏是否有变化?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询