gpt4 book ai didi

.net - 在 XAML 标记中使用图像资源?

转载 作者:行者123 更新时间:2023-12-04 06:55:49 24 4
gpt4 key购买 nike

我正在尝试在 WPF 中的选项卡中添加小图标,但在设置绑定(bind)时遇到了麻烦。

<TabItem.Header>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Source=prop:Resources.eye}" />
<Label VerticalAlignment="Center">Header</Label>
</StackPanel>
</TabItem.Header>

xmlns:prop 是为本地项目的属性设置的,我从其他地方提取其他值,所以我知道命名空间有效。上面的标记编译得很好,但我没有在选项卡中看到眼睛图像。

还有 ,有没有办法把它设置成模板?我对 XAML/WPF 相当陌生,每个选项卡都有自己的图像......

最佳答案

使用此代码。它会工作:)

<TabItem.Header>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Source={x:Static prop:Resources.eye}}" />
<Label VerticalAlignment="Center">Header</Label>
</StackPanel>
</TabItem.Header>

关于.net - 在 XAML 标记中使用图像资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2575267/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com