中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#根據屏幕尺寸大小重新定位控件大小和位置

發布時間:2020-07-18 19:23:53 來源:網絡 閱讀:1208 作者:zw20045 欄目:開發技術
float floScreenProportion = (float)Screen.PrimaryScreen.Bounds.Width / (float)240.0;
           CPublicParameters.P_RedineControlLocationAndSize(this, floScreenProportion);



       /// <summary>
       /// 按照屏幕尺寸自適應空間大小和位置。floScreenProportion為:屏幕尺寸/當前設計尺寸
       /// 比如當前設計尺寸為240,Screen.PrimaryScreen.Bounds.Width為獲取的實際屏幕尺寸
       /// floScreenProportion = (float)Screen.PrimaryScreen.Bounds.Width / (float)240.0;
       /// </summary>
       /// <param name="parent"></param>
       /// <param name="floScreenProportion"></param>
       public static void P_RedineControlLocationAndSize(Control parent, float floScreenProportion)
       {
           foreach (Control control in parent.Controls)//遍歷Form上的所有控件  
           {
               control.Width = (int)(floScreenProportion * control.Width);
               control.Location = new Point((int)(floScreenProportion * (float)control.Location.X), control.Location.Y);
               if (control.Controls.Count > 0)
               {
                   P_RedineControlLocationAndSize(control,floScreenProportion);
               }
           }
       }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汉中市| 绵竹市| 大兴区| 余庆县| 固阳县| 泽州县| 历史| 六枝特区| 公安县| 利辛县| 平利县| 蕲春县| 阿图什市| 双牌县| 邢台市| 连平县| 买车| 高安市| 博兴县| 甘孜| 黑龙江省| 吉安县| 焦作市| 盐边县| 涟源市| 上林县| 秭归县| 桐庐县| 托克托县| 太仆寺旗| 乌海市| 西吉县| 金堂县| 长丰县| 洛南县| 崇阳县| 甘谷县| 化州市| 轮台县| 清丰县| 正宁县|