我使用CLI来做一些Windows GUI工作,一个要求是使对话框没有标题栏,并且不在任务栏中显示它&任务管理器(不要在任务管理器的“应用程序”选项卡中显示它,但可以在"进程"标记中显示进程)。我知道有一个枚举可以完成这项任务:
// Do not show title bar.
System::Windows::Forms::FormBorderStyle::None;
// Do not show it in task.
System::Windows::Forms::FormBorderStyle::FixedToolWindow; bar & task manager
但两个怎么做?我试过了
this->FormBorderStyle =
System::Windows::Forms::FormBorderStyle::FixedToolWindow |
System::Windows::Forms::FormBorderStyle::None;
或
this->FormBorderStyle =
System::Windows::Forms::FormBorderStyle::FixedToolWindow +
System::Windows::Forms::FormBorderStyle::None;
但效果与System :: Windows :: Forms :: FormBorderStyle :: FixedToolWindow
相同有人可以帮忙吗?感谢。
答案 0 :(得分:0)
将ShowInTaskbar
属性设置为false
以隐藏任务栏中的表单,另一个删除边框。