2016-11-21 89 views
0
背景圖像

我是新來的Windows手機的發展,我有設立一個UserControl.I內的背景圖像的困難想擁有它作爲一個靜態資源,圖像是隻對特定的XAML文件。它已經存儲 在我的項目的資產文件夾。下面我的代碼仍然無法看到在預覽窗口中定義內部用戶控件

我的形象這是我的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> 

回答

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}"/>**