我对 WPF 很陌生,我正坐在这本书中试图找出这个应用程序的最佳方法。
标题栏不是客户区的一部分,所以我正在制作自己的标题栏。
哪种方式最容易将其变成某种资源以应用于我创建的所有新窗口?
<Application.Resources>
<Style x:Key="WindowTheme">
<Setter Property="Window.WindowStyle" Value="None"/>
</Style>
<!--Would I create a user control here for the title bar/border and title bar buttons? Or would it be a style?-->
</Application.Resources>