作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将我的列表框绑定(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/
我目前在我的 master 分支上。我需要 CSS 方面的帮助,但不幸的是我的网站受身份验证保护。这使得其他人很难来我的站点进行调试。我计划开始一个新的分支,fixing_css,第一次提交删除所有身
我是一名优秀的程序员,十分优秀!