/// <summary>
        /// 窗体事件--此窗体上的控件自动绽放时有问题,特加此代码强行约束控件显示比例
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void frm_Search_Resize(object sender, EventArgs e)
        {
            xPanel1.Width = this.Width - 13;
            dgv_StoreHouseList.Width = this.Width - 13;
            dgv_StoreHouseList.Height = this.Height - 120;
            turnPage.Top = dgv_StoreHouseList.Height + xPanel1.Height + 20;
            xLabel7.Top = dgv_StoreHouseList.Height + xPanel1.Height + 24;
        }

相关文章:

  • 2021-04-20
  • 2022-12-23
  • 2022-01-06
  • 2021-07-10
  • 2021-08-26
  • 2021-08-24
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-03
  • 2022-01-17
  • 2021-06-21
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
相关资源
相似解决方案