删除WPF窗口的标题栏文本,但保留状态栏文本

时间:2015-06-26 07:00:40

标签: c# wpf mahapps.metro

我正在使用Metro Window在Wpf中工作,是否可以在任务栏中创建一个包含文本的窗口,但在应用程序顶部的标题栏中没有文本?
目前,我使用<Controls:MetroWindow.LeftWindowCommands><Controls:MetroWindow.RightWindowCommands>来自定义标题栏。我附加的图片没有标题文字。enter image description here enter image description here 以下图片有标题。 enter image description here enter image description here
现在我的要求是我的应用程序可以在图像1中看起来像任务栏中的第4个图像

感谢您的帮助。

1 个答案:

答案 0 :(得分:3)

尝试PInvoke方法。

[DllImport("user32.dll")]
    static extern int SetWindowText(IntPtr hWnd, string text);

On Window Loaded:

SetWindowText(new WindowInteropHelper(this).Handle, "Madan");