gpt4 book ai didi

c# - 在 WPF 中绑定(bind) DTO - 我只想显示文件名。目前它正在显示 "DTO"

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

我将我的列表框绑定(bind)到我的 BindableCollection,但我只想显示文件名。目前它正在显示“DTO”

public class FilesDTO : IDTO
{
public int Id { get; set; }
public string FileName { get; set; }
public string FileExtension { get; set; }
public byte[] FileArray { get; set; }
}

using (var ctx = DB.Get())
{
Files = new BindableCollection<FilesDTO>(ctx.Files.Select(x => new FilesDTO { FileArray = x. FileArray, FileExtension = x.FileExtension, FileName = x.FileName, Id = x.Id }));
}

Xaml 端:

<ListBox x:Name="Attachments" Grid.Row="2" ItemsSource="{Binding Files}"  />

我试过 {Binding Files.Filename} 也不行。我的猜测是创建属性绑定(bind)到 :S

最佳答案

您需要设置 ItemsTemplate 以适本地显示您的成员。例如,以下将使用简单的 TextBlock 显示文件列表:

<ListBox x:Name="Attachments" Grid.Row="2" ItemsSource="{Binding Files}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=FileName}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

关于c# - 在 WPF 中绑定(bind) DTO - 我只想显示文件名。目前它正在显示 "DTO",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22153783/

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