<LinearGradientBrush x:Key="MaroonGradientBrush" EndPoint="0,1" StartPoint="0,0">
<GradientStop Color="#FF0C0B0B" Offset="1"/>
<GradientStop Color="#FFBF5656"/>
</LinearGradientBrush>
<Window
x:Class="GraphViewerWindow"
RenderOptions.EdgeMode="Unspecified"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:DaedalusGraphViewer="clr-namespace:DaedalusGraphViewer"
Title="Window1" Height="900" Width="900">
<TextBox Background="{StaticResource MaroonGradientBrush}" />
</Window>
程序打开一个带有正确渐变画笔的窗口。但是,设计视图仍然没有加载窗口,因为它找不到 maroongradientbrush。
编辑:
发现了我的问题。正是这样:
但没有发布的解决方案