C# WinForm设置控件居中

简单阐述

1在C#的WinForm里面,原生控件是没有居中属性的,故通过重写OnResize(EventArgs e)方法,通过计算,重新定位控件位置。

以 Tab 控件为例

(1)重写居中的代码如下:
protected override void OnResize(System.EventArgs e)
{
    base.OnResize(e);
    int x = (int)(0.5 * (this.Width - tabLogin.Width));
    int y = (int)(0.5 * (this.Height - tabLogin.Height));
    tabLogin.Location = new System.Drawing.Point(x, y);
}

//网络素材仅限收藏 方便学习

posted @ 2021-06-10 09:47  New_HackerHK  阅读(1225)  评论(0编辑  收藏  举报