13

When WindowStyle="ToolWindow" and ResizeMode="NoResize" and system DPI is 125-150% the text on the titlebar disappears. I'm running Windows 7 and WPF 3.5 Any idea why is this happening?

pullo_van
  • 649
  • 6
  • 19

2 Answers2

3

I noticed this yesterday. The ToolWindow part and the DPI are fine, but adding the NoResize causes this.

coldandtired
  • 993
  • 1
  • 10
  • 13
0

I had this problem as well with the following:

<Window SizeToContent="WidthAndHeight" ResizeMode="NoResize" WindowStyle="ToolWindow" Title=Blah">

Switching to WindowStyle="SingleBorderWindow" fixed the issue of the Title text not appearing. So if you aren't set on using a ToolWindow, this works too.

jsirr13
  • 944
  • 2
  • 12
  • 38