我有一个简单的表单,我在其中添加了一个图像控件。现在我想从本地目录加载图像。我想使用模板绑定。如何通过模板绑定使用图像控制?请给我建议。
问问题
198 次
1 回答
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>
于 2013-11-06T05:59:48.353 回答