我想做一些如下所示的事情,但我收到的错误是“XAML名称空间中的属性'Class'仅在根元素上被接受。”好吧,我想我的问题是如何抽象出一个Window类(在这种情况下,问题是下面的SomeOtherWindowClass)(因为我将这个类作为WPF窗口添加到我的项目中),并将其作为子类包含在内我项目中的窗口?
<Window x:Class="myLogViewer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="myLogViewer"
Height="600"
Width="800"
Background="Black"
BorderBrush="Black"
Style="{DynamicResource MainWindow}"
WindowStyle="None">
<Grid Background="Black">
<Window x:Name="myOtherLogViewerWindow"
x:Class="myLogViewer.SomeOtherWindowClass"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="Black"
BorderBrush="Black"
Style="{DynamicResource myOtherLogViewerWindow}"
WindowStyle="None"/>
</Grid>
</Window>