1
我想在從服務器加載原始圖像之前顯示默認圖像(有些東西,如品牌圖標)。有可能寫出很多代碼。因爲我想在整個應用程序中的相同行爲。在服務器初始加載之前是否可以顯示默認圖像?
或者我們需要爲此創建自定義控件。請指導我!
我想在從服務器加載原始圖像之前顯示默認圖像(有些東西,如品牌圖標)。有可能寫出很多代碼。因爲我想在整個應用程序中的相同行爲。在服務器初始加載之前是否可以顯示默認圖像?
或者我們需要爲此創建自定義控件。請指導我!
如果你打算在很多不同的地方重複使用它,那麼創建一個CustomControl可能會更容易。
這裏是一個小的用戶控制哪些應該做的是:
<UserControl x:Class="PhoneApp1.ImageWithLoading"
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"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
d:DesignHeight="480" d:DesignWidth="480"
x:Name="myImageWithLoading">
<Grid x:Name="LayoutRoot" >
<Image x:Name="temporaryImage" Source="/Assets/Loading"/>
<Image Source="{Binding Source,ElementName=myImageWithLoading}" ImageOpened="RemoteImage_OnLoaded"/>
</Grid>
</UserControl>
public partial class ImageWithLoading : UserControl
{
public static readonly DependencyProperty SourceProperty =
DependencyProperty.Register("Source", typeof (ImageSource), typeof (ImageWithLoading), new PropertyMetadata(default(ImageSource)));
public ImageSource Source
{
get { return (ImageSource) GetValue(SourceProperty); }
set { SetValue(SourceProperty, value); }
}
public ImageWithLoading()
{
InitializeComponent();
}
private void RemoteImage_OnLoaded(object sender, RoutedEventArgs e)
{
temporaryImage.Visibility = Visibility.Collapsed;
}
}
另一種選擇可能是建立在你的默認樣式網頁中的圖片默認樣式像這樣
<Style TargetType="Image">
<Setter Property="Source" Value="/Assets/Load.jpg"/>
</Style>
,只是設置源當圖像準備
謝謝回答:) –
謝謝您的回答。它對我來說非常合適。我爲'ImageBrush'嘗試同樣的事情。我有一個** Ellipse **。在'Ellipse.Fill'屬性中,我添加了ImageBrush。我怎樣才能將你的代碼用於'ImageBrush'? –