gpt4 book ai didi

c# - 从 WPF/XAML 中的字符串末尾清除空格

转载 作者:太空狗 更新时间:2023-10-29 22:16:54 26 4
gpt4 key购买 nike

我有一个 MVVM 应用程序,它使用一个填充有图像的列表框。图像字符串总是来自一个我无法修改的对象,因为它是使用 edmx 模型生成的。

长话短说,我需要在下面的 xaml 中添加一种方法,通过 SQL 从字符串中修剪放在图像路径末尾的空格。

<ListBox ItemsSource="{Binding AllImages}" x:Name="listBox1" Width="300" Margin="10,10,0,10">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Grid.Column="0" Source="{Binding imagePath}" Height="100" Width="100" />
<TextBlock Grid.Column="1" Text="{Binding imageId}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

这可能吗?

最佳答案

使用 value converter在为您进行修剪的绑定(bind)中。

关于c# - 从 WPF/XAML 中的字符串末尾清除空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8808212/

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