0

Blend 4 は、これは無効なマークアップであり、その理由を教えてくれません:

<ImageBrush Stretch="Fill"  ImageSource="{Binding Avatar, Mode=OneWay}"/>

Twitter フィードからデータを取得し、ImageSource に保存してから、ImageBrush (以下を参照) にバインドして、Rectangle の Fill として使用します。より多くのコンテキストは次のとおりです。

<Rectangle x:Name="Avatar" RadiusY="9" RadiusX="9" Width="45" Height="45"  VerticalAlignment="Center" HorizontalAlignment="Center" >
    <Rectangle.Fill>
       <ImageBrush Stretch="Fill"  ImageSource="{Binding Avatar, Mode=OneWay}"/>
    </Rectangle.Fill>
</Rectangle>

Silverlight アプリケーション内で使用される Silverlight UserControl 内でこれを使用しています。問題が何であるかについてのアイデアはありますか?

4

3 に答える 3

0

Binding は ImageBrush の ImageSource に適用できません。私は同様の問題を抱えており、代替手段を探しています。

于 2010-10-08T21:23:39.117 に答える
0

どうぞ:WPF/Silverlight

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:convertor="clr-namespace:WpfApplication1.Converters"
        Title="MainWindow" Height="350" Width="525">

    <Window.Resources>
        <convertor:RectangleImageFillConvertor x:Key="RectangleImageFillConvertor" />
    </Window.Resources>

    <Grid>
        <Rectangle  HorizontalAlignment="Center" 
                    RadiusX="10" 
                    RadiusY="10" 
                    Width="200"  
                    Height="200"
                    Fill="{Binding ImageUrl, Converter={StaticResource RectangleImageFillConvertor}}"/>
    </Grid>
</Window>

引用符

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {

        public string ImageUrl { get; set; }

        public MainWindow()
        {
            InitializeComponent();
            this.DataContext = this;
            ImageUrl = "http://www.deargrumpycat.com/wp-content/uploads/2013/02/Grumpy-Cat1.jpg";
        }
    }
}

ブロッククオート ブロッククオート

namespace WpfApplication1.Converters
{
    public class RectangleImageFillConvertor : IValueConverter
    {

        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            try
            {
                return new ImageBrush(new BitmapImage(new Uri(value as string, UriKind.RelativeOrAbsolute)));
                 //if silverlight
                 //  return new ImageBrush{   ImageSource = new BitmapImage(new Uri(value as string, UriKind.RelativeOrAbsolute))};
            }
            catch
            {
                return null;
            }
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

ここに画像の説明を入力

于 2013-11-14T08:34:31.467 に答える
0

ImageBrush の ImageSource にバインドすることはできませんが、Shape の Fill プロパティにバインドすることはできます。したがって、次のように動作します。

<Rectangle Name="myRect" Fill="{Binding Avatar}"/>

次のようなクラスを使用します。

public class AvatarClass
{
    public ImageBrush Avatar { get; set; }
}

次のようなコードビハインド:

 myRect.DataContext = new AvatarClass{ 
                       Avatar = new ImageBrush {
                        ImageSource = new BitmapImage(avatarUri)}};
于 2011-03-07T09:37:56.197 に答える