我正在使用Metro Window在Wpf中工作,是否可以在任务栏中创建一个包含文本的窗口,但在应用程序顶部的标题栏中没有文本?
目前,我使用<Controls:MetroWindow.LeftWindowCommands>
和<Controls:MetroWindow.RightWindowCommands>
来自定义标题栏。我附加的图片没有标题文字。
以下图片有标题。
现在我的要求是我的应用程序可以在图像1中看起来像任务栏中的第4个图像
感谢您的帮助。
答案 0 :(得分:3)
尝试PInvoke方法。
[DllImport("user32.dll")]
static extern int SetWindowText(IntPtr hWnd, string text);
On Window Loaded:
SetWindowText(new WindowInteropHelper(this).Handle, "Madan");