摘要:
//引入API函数 [DllImportAttribute("user32.dll")] public static extern int FindWindow(string ClassName,string WindowName); [DllImport("user32.dll")] public static extern int ShowWindow(int handle, int cmdS... 阅读全文
摘要:
string message = "you did not enter a server name. cancel this operation?"; string caption = "no server name specified"; MessageBoxButtons buttons = MessageBoxButtons.YesNo; DialogResult result; // di... 阅读全文