gpt4 book ai didi

c# - UWP - 在 xaml 中的图像上创建数据绑定(bind)工具提示

转载 作者:行者123 更新时间:2023-11-30 14:08:03 25 4
gpt4 key购买 nike

我有一个数据驱动的中心部分,可以很好地填充图像。 View 模型包含我想显示为工具提示的文本,但不太明白。

这是重要的片段:

<HubSection x:Uid="MyHub" x:Name="MyHubSection" Width="311">
<HubSection.Header>
<TextBlock x:Uid="HubMSectionHeader"
Style="{StaticResource MainHubSectionHeaderStyle}" Text="Friends"/>
</HubSection.Header>
<DataTemplate>
<StackPanel>
<Button x:Name="InviteButton" Content="Send Invite" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Click="InviteButton_Click"/>
<StackPanel >
<Grid>
<GridView ItemsSource="{Binding Friends}" Background="{ThemeResource HubBackground}" x:Name="FriendGrid" >
<GridView.ItemTemplate >
<DataTemplate>
<Image Source="{Binding ProfilePhotoBitmap, Mode=TwoWay}" Height="100" Opacity="1" Stretch="Uniform" Tapped="Friend_Tapped"/>
<ToolTipService.ToolTip>
<TextBlock Text="{Binding FullName}"/>
</ToolTipService.ToolTip>
</DataTemplate>
</GridView.ItemTemplate>
</GridView>
</Grid>
</StackPanel>
</StackPanel>
</DataTemplate>
</HubSection>

最佳答案

我想知道为什么工具提示服务代码在图像控件之外,您能否在图像控件内部尝试一下,让我知道它是否有效?修改后的代码片段将是

<Image Source="{Binding ProfilePhotoBitmap, Mode=TwoWay}" Height="100" Opacity="1" Stretch="Uniform" Tapped="Friend_Tapped">
<ToolTipService.ToolTip>
<TextBlock Text="{Binding FullName}"/>
</ToolTipService.ToolTip>
</Image>

关于c# - UWP - 在 xaml 中的图像上创建数据绑定(bind)工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37011011/

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