Custom ListViewItem in ListView(ListView 中的自定义 ListViewItem)
问题描述
在 ListViewItem 中显示项目的可能方式 WPF
possible ways to show item in ListViewItem WPF
更新:
这是我需要添加到 ListView 的控件,在这里我只需要显示计算机名称,该项目仍应包含计算机地址
that's the control i need to add to the ListView, in here i only need to display the Computer Name, still the item should hold the Computer Address
稍后,我将需要 ListView 以及代表文件和文件夹的项目,这些项目将具有:名称、路径、大小、图标、IsFile 属性.
later, i will need ListView with Items that represent Files and Folders which will have : Name, Path, Size, Icon, IsFile properties.
所以这就是我现在正在处理的问题,我卡在 listView 中,当我切换到 WPF 时我没想到会发生这种情况
so this's what I'm dealing with right now, im stuck in listView which i didn't expect to happen when i switched to WPF
推荐答案
这是另一个例子:
<Window x:Class="WpfApplication14.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="V2luZG93MQ==" Height="300" Width="300">
<DockPanel>
<Button Content="Show Selected Computer" Click="Button_Click" DockPanel.Dock="Top"/>
<ListBox ItemsSource="{Binding}"
SelectedItem="{Binding SelectedComputer, RelativeSource={RelativeSource AncestorType=Window}}">
<ListBox.ItemTemplate>
<DataTemplate>
<DockPanel Margin="2">
<Rectangle Fill="Gray" Width="32" Height="32" DockPanel.Dock="Left"/>
<TextBlock Text="{Binding Name}" VerticalAlignment="Center"/>
</DockPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</DockPanel>
</Window>
代码背后:
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
DataContext = Enumerable.Range(1,10)
.Select(x => new ComputerInfo()
{
Name = "Computer" + x.ToString(),
Ip = "192.168.1." + x.ToString()
});
}
public ComputerInfo SelectedComputer { get; set; }
private void Button_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show(SelectedComputer.Ip);
}
}
数据项:
public class ComputerInfo
{
public string Name { get; set; }
public string Ip { get; set; }
}
结果:
这篇关于ListView 中的自定义 ListViewItem的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ListView 中的自定义 ListViewItem
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01