在UserControl

时间:2016-11-21 11:44:45

标签: c# xaml user-controls windows-phone-8.1 wpf-controls

我是Windows手机开发的新手,我在UserControl中设置背景图片时遇到了困难。我希望将其作为静态资源,图像仅适用于该特定的xaml文件。它已经存储好了 在我的项目的Assets文件夹中。使用下面的代码,我仍然无法在预览窗口中看到我的图像

这是我的xaml文件:

<UserControl
x:Class="OrangePulse.LoginControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:OrangePulse"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="800"
d:DesignWidth="500">

<UserControl.Resources>

    <BitmapImage x:Key="splashScreen" UriSource="/Assets/loginBgd.png"/>
</UserControl.Resources>

1 个答案:

答案 0 :(得分:0)

在您的代码中,您只在资源集合中添加了图像。

<UserControl.Resources>
    <BitmapImage x:Key="splashScreen" UriSource="/Assets/loginBgd.png"/>
</UserControl.Resources>

您必须将此资源绑定到任何控件以显示图像...就像添加吹线一样,它将显示图像..

 <UserControl.Resources>
    <BitmapImage x:Key="splashScreen" UriSource="/Assets/loginBgd.png"/>
   </UserControl.Resources>
**<Image  Source="{StaticResource splashScreen}"/>**