分類:[VB.NET/VB2005 以降]
XAMLにおいて
<UserControl x:Class="SilverlightApplication1.MainPage"
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"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="800">
(追加部分はここから)
<Image Height="150" Name="Image1" Stretch="Fill" Width="200" Source="c:\test.jpg" />
(追加部分はここまで)
</UserControl>
と記述して起動すると画像が表示されません。
VB側でどういう記述をしたら画像が表示されるかご教授願います。
ちなみに普通に画像指定で追加部分を
<Image Height="150" Name="Image1" Stretch="Fill" Width="200" Source="/SilverlightApplication1;component/Images/test.jpg" />
に変えて、ソリューション「SilverlightApplication1」「Image(フォルダ)」の下に
「test.jpg」がある場合は表示されます。
|