如何制作没有标题栏的对话框,不要在任务栏中显示它任务管理器

时间:2014-12-12 07:39:55

标签: windows user-interface c++-cli

我使用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

相同

有人可以帮忙吗?感谢。

1 个答案:

答案 0 :(得分:0)

ShowInTaskbar属性设置为false以隐藏任务栏中的表单,另一个删除边框。