隐藏Compact Framework中的标题栏

时间:2012-11-20 09:46:06

标签: c# windows-mobile compact-framework

我在Windows移动项目中工作。 由于某些项目要求,我需要隐藏表单的tittle bar,但没有找到表单的任何属性。

任何建议都将不胜感激。

提前致谢

4 个答案:

答案 0 :(得分:1)

隐藏您必须使用的表单标题栏

this.WindowState = FormWindowState.Maximized;

如果您也想隐藏菜单栏,请使用

this.Menu = null;

enter image description here enter image description here enter image description here

通常,Windows Mobile表单没有标题,但表单的标题(标题文本)显示为顶部栏的一部分。

〜约瑟夫

答案 1 :(得分:0)

考虑到您使用WPF使用Winforms,您可以尝试考虑这个: -

this.ControlBox = false;
this.Text = string.Empty;

否则,您可以将FormBorderStyle设置为None。

或者你可以试试这个: -

this.ShowInTaskBar = false;

答案 2 :(得分:0)

我还没有为WindowsMo​​bile开发,但我有Windows CE。在Windows CE中,我将执行以下操作来隐藏窗口标题栏。

  1. FormBorderStyle设置为无
  2. ControlBox - False
  3. MinimizeBox - False
  4. MaximizeBox - False
  5. 试试

答案 3 :(得分:0)

对于窗口CE设备,您可以尝试使用这些属性来隐藏标题栏。

TopMost ====> TRUE

WindowState =====>正常

FormBorderStyle ====>无

希望它会帮助你...... :)