'在 'System.Windows.Baml2006.TypeConverterMarkupExtension' 上提供值引发了异常。' 行号“12”和行位置“18”。
<Window x:Class="Gasoline.Style.BaseWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="BaseWindow" Height="300" Width="300" ResizeMode="NoResize" WindowStyle="None" BorderBrush="Black">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="26"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<DockPanel LastChildFill="False" Height="26">
<DockPanel.Background>
<ImageBrush ImageSource="/Resources/FrameTitle.png"/>
</DockPanel.Background>
</DockPanel>
</Grid>
</Window>
原因是:
<ImageBrush ImageSource="/Resources/FrameTitle.png"/>
我在这里做错了什么?
一旦我给画笔一个图像源(即使是通过创建不同值的属性窗口),当我启动应用程序时它就会抛出该错误。
设计师工作得很好。