我是XAML的新手,在我读到的任何地方,人们通常会使用某种容器作为根视图(StackLayout,ContentPage,ContentView,RelativeLayout等)。
但是,我遇到了以Image为根的XAML。我们为什么要这样做?
<?xml version="1.0" encoding="utf-8" ?>
<Image
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:r="clr-namespace:My.Resources;assembly=My.Resources"
x:Class="My.Views.Buttons.MyView"
Source="MyImage.png"/>
我想用FFImageLoading.CachedImage替换这个Image,但为此我需要添加FFImageLoading xmlns命名空间,但我不能,因为命名空间在Image标签内,而不是在外面。
答案 0 :(得分:1)
您可以在root标记中指定名称空间,并在XAML中的根标记本身中使用它。
例如:
<ffimageloading:CachedImage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:ffimageloading="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="SomeAppNameSpace.CustomCachedImage"
Source="http://loremflickr.com/600/600/nature?filename=simple.jpg">
</ffimageloading:CachedImage>
请确保从背后的代码中派生出正确的类:
namespace SomeAppNameSpace
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CustomCachedImage : CachedImage
{
public CustomCachedImage()
{
InitializeComponent();
}
}
}