如何使用控件模板在图像控件和模板绑定中加载图像?

时间:2013-11-06 05:53:29

标签: wpf wpf-controls wpf-4.0

我有一个简单的表单,我添加了一个图像控件。现在我想从本地目录加载图像。我想使用模板绑定。如何通过模板绑定使用图像控制?请给我一些建议。

1 个答案:

答案 0 :(得分:1)

这可能适合你

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Control Tag="C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg">
        <Control.Template>
            <ControlTemplate>
                <StackPanel>
                    <Image Source="{Binding Path=Tag, RelativeSource={RelativeSource TemplatedParent}}"/>
                </StackPanel>
            </ControlTemplate>
        </Control.Template>
    </Control>
</Page>