摘要:from:http://stackoverflow.com/questions/1381821/how-to-toggle-switch-windows-taskbar-from-show-to-auto-hide-and-vice-versa[DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr FindWindow(string strClassName, string strWindowName);[DllImport("shell32.dll")]
阅读全文
01 2014 档案
摘要:private void FrmMyShow_Load(object sender, EventArgs e) { Rectangle r = Screen.GetWorkingArea(this); //this.Location = new Point(r.Right - this.Width, r.Bottom - this.Height); //右下 //this.Location = new Point(0, r.Bottom - this.Height); //左下 ...
阅读全文