c# 弹出窗体的显示位置设定

属性设置: 

        SizeGripStyle   :  Show

        StartPosition   :  Manual

显示函数:

        public int Show(int top, int left)
        {
            this.SetDesktopLocation( left, top);
            this.ShowDialog();
            return retval;
        }

你可能感兴趣的:(c# 弹出窗体的显示位置设定)