我正在创建一个 wpf 应用程序,我有这些代码行:
public MainWindow()
{
Background = (Brush)FindResource("Background");
}
这是窗口文件:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MyApp"
mc:Ignorable="d"
Title="MainWindow" Height="800" Width="450" WindowStartupLocation="CenterScreen">
<Window.Resources>
<ResourceDictionary Source="Resources/MainWindow.xaml"/>
</Window.Resources>
<Grid>
</Grid>
</Window>
这是字典本身:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyApp">
<ImageBrush x:Key="Background" ImageSource="Sources/..."/>
</ResourceDictionary>
我的背景没有定义。即,不应用更改。但如果你这样做:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MyApp"
mc:Ignorable="d"
Title="MainWindow" Height="800" Width="450" WindowStartupLocation="CenterScreen"
Background="{StaticResource Background}">
<Window.Resources>
<ResourceDictionary Source="Resources/MainWindow.xaml"/>
</Window.Resources>
<Grid>
</Grid>
</Window>
那么一切都会奏效。如何修复它以使其在代码和标记中都有效。调试时发现Count
该属性Resources
等于零。一切都好。奇怪的。
我知道两种在代码中获取资源的方法。
首先:
然后按名称获取:
第二:
如果您在应用程序中使用一个资源文件,则第二种方法适用。
第一个,如果您在某个项目中单独使用资源文件,而应用程序使用另一个资源文件。
您需要添加并且一切正常
InitializeComponent
。MainWindow()