C# WinForm设置label标签在panel容器中的位置

/// 
        /// 设置label标签在panel容器中的位置
        /// 
        /// 
        /// 
        void panel_HMS_Resize(object sender, EventArgs e)
        {
            label_HMS.Location = new Point(Convert.ToInt32(panel_HMS.Width - label_HMS.Width) / 2, Convert.ToInt32(panel_HMS.Height - label_HMS.Height) / 4);
        }

你可能感兴趣的:(Winform)