エラーが発生します
ファイル /DocomGUI;component/Resources/logo.jpg がプロジェクトの一部ではないか、その「ビルド アクション」プロパティが「リソース」に設定されていません。
ただし、logo.jpg
ファイルは間違いなくプロジェクトの一部であり、ビルド アクションも「リソース」に設定されています。
/Resources/
プロジェクトのルートにあるフォルダー内にありResources.resx
、同じ名前のファイルにもあります。
ソリューションを再構築してクリーニングしようとしましたが、それでもエラーがポップアップします。ファイルが見つからないようにするには、他に何が問題になる可能性がありますか?
コード:
<Window x:Class="DocomGUI.AboutWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="AboutWindow" Height="180" Width="220" Background="LightGray" MinWidth="220" MinHeight="115" MaxWidth="220" MaxHeight="115">
<Grid>
<Label Margin="0,66,24,48">DocomGUI</Label>
<Label Height="30" Margin="12,0,12,12" Name="VersionLabel" VerticalAlignment="Bottom"></Label>
<Image Margin="12,12,12,0" Stretch="Fill" Height="48" VerticalAlignment="Top" Source="/DocomGUI;component/Resources/logo.jpg" />
</Grid>
</Window>