任务窗体显示标题内容
[DllImport("user32.dll", EntryPoint = "WindowText", CharSet = CharSet.Ansi)]
public static extern int SetWindowText(IntPtr hWnd, string content);
WindowText(this.Handle, this.Text);
[DllImport("user32.dll", EntryPoint = "WindowText", CharSet = CharSet.Ansi)]
public static extern int SetWindowText(IntPtr hWnd, string content);
WindowText(this.Handle, this.Text);