绑定到 Image 控件,将路径连接到 Path 属性 - XAML
我正在尝试通过 XAML 在 Silverlight 应用程序中使用绑定。我想绑定到 Image 控件的 Source 属性。绑定中的 source 属性是图像文件名,例如 logo.jpg,我想在包含 logo.jpg 的文件夹前面添加相对路径。我怎样才能实现这个目标?
这就是我所拥有的:
<Image Source="{Binding Path=Logo}" Width="125" Height="100" />
这就是我想要的:
<Image Source="{Binding Path=/AppName;component/Images/ + Logo}" Width="125" Height="100" />
I am trying to use binding in a Silverlight app through XAML. I want to bind to the Source property of an Image control. The source property in the binding is the image filename like logo.jpg, and I want to prepend a relative path to the folder that contains logo.jpg. How can I achieve this?
This is what I have:
<Image Source="{Binding Path=Logo}" Width="125" Height="100" />
This is what I want:
<Image Source="{Binding Path=/AppName;component/Images/ + Logo}" Width="125" Height="100" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论