gpt4 book ai didi

c# - 生成从 csv 到列表框的列表

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

我正在尝试从我拥有的数据库生成一个列表,并使用 LINQ 将其添加到 WPF C# 中的列表框。

这是我目前拥有的 XAML:

<ListView x:Name="ListBox" Margin="16,232,22,10.4" SelectionMode="Multiple">
<ListView.View>
<GridView>
<GridViewColumn Header="Nettstasjon" Width="100" DisplayMemberBinding="{Binding Path=Name}"/>
<GridViewColumn Header="Område" Width="100" DisplayMemberBinding="{Binding Path=Area}"/>
<GridViewColumn Header="Radial" Width="100" DisplayMemberBinding="{Binding Path=Radial}"/>
</GridView>
</ListView.View>
</ListView>

为了读取数据库,我有这个代码隐藏。我创建了一个类“TransformerStation”来保存每行数据。

public class TransformerStation : INotifyPropertyChanged
{
public string Name { get; set; }
public string Radial { get; set; }
public string Area {get; set; }

public event PropertyChangedEventHandler PropertyChanged;
}

然后我做了一个读取数据库的类

public IEnumerable<TransformerStation> ReadCSV(string fileName, string radial)
{

string[] lines = File.ReadAllLines(System.IO.Path.ChangeExtension(fileName, ".csv"), Encoding.UTF8);


return lines.Select(line =>
{
string[] data = line.Split(';');

foreach (var value in data)
{
if (data = radial)
{
return new TransformerStation(data[0], data[1], data[2]);
}
}
});
}

我的数据库是这样的:

N765;TANGEN;TANGEN L98
R2351;SPIKKESTAD;SPIKKESTAD K88
S622;KRÅKSTAD;KRÅKSTAD L812
S1318;KRÅKSTAD;KRÅKSTAD L812

我需要的是:

我有一个带有按钮的 WPF,其内容等于我的数据库中的第三列 (F.eks KRÅKSTAD L812)。当我按下一个按钮时,我想从我的数据库中收集第一列中与第三列中的按钮内容匹配的所有项目,并将它们显示在我上面创建的列表框中。

所以,如果我按下内容为“Kråkstad L812”的按钮,那么我的列表将显示

S622
S1318

对不起,我是 C# 和 WPF 的新手。所以我没有太多代码可以展示。但我真的很感激我能得到的所有帮助,如果你解释代码中发生的事情,它真的会有所不同 :) 所以澄清一下,我基本上需要 SELECT radial FROM 数据库并从中生成一个列表。

编辑,我也对从 csv 数据库导入数据的其他方式持开放态度。我刚选了一个对我有用的:)

最佳答案

这里有很多问题。首先,您实际上并没有正确实现 INotifyPropertyChange 支持。在这里最简单的事情可能是将 MVVM Lite 添加到您的项目中(如果您使用 NuGet,这只需要一分钟)并将您的 View 模型基于 ViewModelBase:

public class TransformerStation : ViewModelBase
{
private string _Name;
public string Name
{
get { return this._Name; }
set { this._Name = value; RaisePropertyChanged(); }
}

private string _Radial;
public string Radial
{
get { return this._Radial; }
set { this._Radial = value; RaisePropertyChanged(); }
}

private string _Area;
public string Area
{
get { return this._Area; }
set { this._Area = value; RaisePropertyChanged(); }
}

public TransformerStation(string name, string radial, string area)
{
this.Name = name;
this.Radial = radial;
this.Area = area;
}

}

我注意到的第二件事是,您似乎在加载数据时过滤了数据,这表明每次用户按下按钮时您都在重新加载。除非你有大量的数据,否则你也可以将整个数据存储在内存中并在加载后对其进行过滤。如果您需要在运行时动态创建按钮,字典不仅会加快过滤过程,还会为您提供数据集中所有径向线的列表:

    public Dictionary<string, List<TransformerStation>> ReadCSV(string fileName)
{

string[] lines = File.ReadAllLines(System.IO.Path.ChangeExtension(fileName, ".csv"), Encoding.UTF8);
return lines.Select(line =>
{
string[] data = line.Split(';');
return new TransformerStation(data[0], data[1], data[2]);
})
.GroupBy(ts => ts.Radial)
.ToDictionary(g => g.Key, g => g.ToList());
}

回到您的 MainViewModel 中,您需要加载数据并将其存储在某个地方(即 AllStations),您将需要一个属性,如“SelectedRadial”,您设置它以响应用户按下按钮,以及另一个属性(“CurrentStations” ") 这是 AllStations 的过滤版本:

    private Dictionary<string, List<TransformerStation>> _AllStations;
public Dictionary<string, List<TransformerStation>> AllStations
{
get { return this._AllStations; }
private set { this._AllStations = value; RaisePropertyChanged(); }
}


private string _SelectedRadial;
public string SelectedRadial
{
get { return this._SelectedRadial; }
set
{
this._SelectedRadial = value;
RaisePropertyChanged();
this.CurrentStations = this.AllStations[value];
}
}

private List<TransformerStation> _CurrentStations;
public List<TransformerStation> CurrentStations
{
get { return this._CurrentStations; }
private set { this._CurrentStations = value; RaisePropertyChanged(() => this.CurrentStations); }
}

public ICommand RadialCommand {get { return new RelayCommand<string>(OnRadialCommand); }}
private void OnRadialCommand(string radial)
{
this.SelectedRadial = radial;
}


public MainViewModel()
{
this.AllStations = ReadCSV(@"data.csv");
}

然后只需绑定(bind)一些最小的 XAML 来生成按钮(同样,这是可选的)并显示您的数据:

<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>

<ListBox ItemsSource="{Binding AllStations.Keys}">
<ListBox.ItemTemplate>
<ItemContainerTemplate>
<Button Command="{Binding Path=DataContext.RadialCommand, RelativeSource={RelativeSource AncestorType={x:Type ListBox}}}" CommandParameter="{Binding}">
<TextBlock Text="{Binding}" />
</Button>
</ItemContainerTemplate>
</ListBox.ItemTemplate>
</ListBox>

<ListView Grid.Column="1" ItemsSource="{Binding CurrentStations}" >
<ListView.View>
<GridView>
<GridViewColumn Header="Nettstasjon" Width="100" DisplayMemberBinding="{Binding Path=Name}"/>
<GridViewColumn Header="Område" Width="100" DisplayMemberBinding="{Binding Path=Area}"/>
<GridViewColumn Header="Radial" Width="100" DisplayMemberBinding="{Binding Path=Radial}"/>
</GridView>
</ListView.View>
</ListView>

</Grid>

结果:

enter image description here

关于c# - 生成从 csv 到列表框的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34551503/

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