Removing the Title bar of external application using c#

后端 未结 7 1184
眼角桃花
眼角桃花 2020-12-10 12:42

My application starts up another external application.

I want to remove the title bar of this external application once it has started.

Is this feasible, and

7条回答
  •  春和景丽
    2020-12-10 13:18

    In general, you can't do that unless there is direct support for in by the application you are starting (for example, if it takes a command line switch for removal of the title bar).

    You can only control the things that are already present on the ProcessStartInfo class (i.e. open a new window, start minimized/maximized etc...).

提交回复
热议问题