4

好的,这似乎很难,或者我遗漏了一些明显的东西。我想创建将在所有产品中使用的可重复使用的窗口。这意味着该控件位于 WPF.Controls 程序集中。Themes/Generic.xaml 不是解决方案,我需要为窗口提供自己的代码,例如自定义消息挂钩等。

这是我在 WPF.Controls.dll 中的代码:

public class CustomWindow : Window
{
    static CustomWindow()
    {
        DefaultStyleKeyProperty.OverrideMetadata(
 typeof(CustomWindow),
 new FrameworkPropertyMetadata(typeof(CustomWindow)));
    }

现在,在另一个程序集中,我创建了 XAML 文件并尝试使用它:

<controls:CustomWindow x:Class="Views.MainWindow"
                               xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                               xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                               xmlns:controls="clr-namespace:WPF.Controls;assembly=WPF.Controls"
                               WindowStartupLocation="CenterScreen">
<TextBlock Text="TESTING" />
</controls:CustomWindow>

我所看到的:大黑屏,仅此而已(大黑色矩形 - 没有标题栏)。任何人都可以对此有所了解吗?通过谷歌搜索,我发现其他人也有同样的问题,所以我想这不是我特有的。

禁用硬件渲染没有帮助。

4

1 回答 1

2

您需要从 CustomWindow 类中删除静态构造函数。设置 DefaultStyleKey 的目的是帮助 WPF 找到应在 Themes/Generic.xaml 中定义的默认模板。但是由于您不想这样做,因此您需要将其删除。

我通过将 CustomWindow 类添加到类库项目(必须导入很多依赖项)来测试您的代码,然后在 WPF 项目中使用它。使用您的构造函数,窗口的所有内容都是黑色的,一旦我删除它,一切都会完美运行。

是制作自己的控件的好资源

// Chris Eelmaa: 这是正确的,另外,我想补充一点,也可以将 Themes/Generic.xaml 添加到您的 dll,然后您需要将程序集ThemeInfo属性添加到您的 DLL (AssemblyInfo.cs),为了让它工作:

// http://blogs.magnatis.com/tim/dude-wheres-my-default-style
[assembly: ThemeInfo(
    ResourceDictionaryLocation.None, //where theme specific 
    // resource dictionaries are located 
    ResourceDictionaryLocation.SourceAssembly //where the
    // generic resource dictionary is located 
)]
于 2013-11-19T11:49:50.760 回答