在WPF中绑定图像?

时间:2010-02-04 12:06:07

标签: c# wpf image data-binding

我想在WPF中显示由进程创建的图像,
例如:我们有一个名为createWPFImage()的方法

Image createWPFImage() { ... }

因此,createWPFImage()的输出是一个图像 在XAML代码中,我们有如下内容:

<StackPanel.ToolTip>
    <StackPanel Orientation="Horizontal">
        <Image Width="64" Height="64" Margin="0 2 4 0" />
        <TextBlock Text="{Binding Path=Description}" VerticalAlignment="Center" />
    </StackPanel>
</StackPanel.ToolTip>


现在,如何将createWPFImage()的输出绑定到XAML代码中的Image? 如果你指导我,我将不胜感激。

2 个答案:

答案 0 :(得分:4)

假设您使用方法“CreateWpfImage”拥有“MyClass”类(请参阅下面的示例)。

在您的XAML中,您可以创建MyClass,然后使用参考资料部分中的ObjectDataProvider调用CreateWpfImage(参见Bea Stollnitz博客文章ObjectDataProvider)。

XAML

<Window x:Class="MyApplicationNamespace.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:MyApplicationNamespace="clr-namespace:MyApplicationNamespace"
    Title="Window1" Height="300" Width="300">       

<Window.Resources>
    <ObjectDataProvider ObjectType="{x:Type MyApplicationNamespace:MyClass}" x:Key="MyClass" />
    <ObjectDataProvider ObjectInstance="{StaticResource MyClass}" MethodName="CreateWpfImpage" x:Key="MyImage" />
</Window.Resources>

<StackPanel>
    <Image Source="{Binding Source={StaticResource MyImage}, Path=Source}"/>
</StackPanel>

示例MyClass代码,用于为要使用的XAML创建图像 -

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;

namespace MyApplicationNamespace
{
    public class MyClass
    {
        public Image CreateWpfImpage()
        {
            GeometryDrawing aGeometryDrawing = new GeometryDrawing();
            aGeometryDrawing.Geometry = new EllipseGeometry(new Point(50, 50), 50, 50);
            aGeometryDrawing.Pen = new Pen(Brushes.Red, 10);
            aGeometryDrawing.Brush = Brushes.Blue;
            DrawingImage geometryImage = new DrawingImage(aGeometryDrawing);

            Image anImage = new Image();
            anImage.Source = geometryImage;
            return anImage;
        }
    }
}

答案 1 :(得分:2)

如果您有一个图像路径,并且只是希望能够动态更改图像,则绑定到类型为string的依赖项属性,并在您的方法中设置依赖项属性的值。

<Image Source="{Binding MyImagePath}" />

    public static readonly DependencyProperty MyImagePathProperty = DependencyProperty.Register("MyImagePath", typeof(string), typeof(ClassName), new PropertyMetadata("pack://application:,,,/YourAssembly;component//icons/icon1.png"));


    public string MyImagePath
    {
        get { return (string)GetValue(MyImagePathhProperty); }
        set { SetValue(MyImagePathProperty, value); }
    }