我们可以通过使用其属性找到标签的Left,Right和Top位置。我们如何找到标签相对于y轴的终点。因为我们找到了最高位置以及如何找到位置。
int t=label1.Top; //it works how i can find
int e=label1.End; //or
int d=label1.Down;
标签在其结束处的位置。 y的平均最大值。
答案 0 :(得分:1)
使用
int Down= label1.Bottom;
或
int Down= label1.Top+label1.Height;