gpt4 book ai didi

c# - 如何将列表从数据库绑定(bind)到 RibbonComboBox?

转载 作者:太空宇宙 更新时间:2023-11-03 16:41:47 24 4
gpt4 key购买 nike

我有从数据库返回字符串列表的函数。我想在 wpf 功能区菜单中显示这些结果。

我认为我需要将 RibbonComboBoxRibbonGalleryCategory 一起使用,并以某种方式绑定(bind) RibbonGalleryItem 以显示来自数据库的结果。

我的数据库函数代码如下所示:

    public List<String> GetSeanceListName()
{
List<String> seanceList = new List<String>();
seanceList = (from s in Db.Seance
where s.Date >= DateTime.Today
select s.Name).ToList();

return seanceList;
}

非常感谢这里的任何帮助!

最佳答案

这应该适用于您的情况:

<ribbon:RibbonComboBox IsEditable="True">
<ribbon:RibbonGallery>
<ribbon:RibbonGalleryCategory ItemsSource="{Binding}" Name="seanceList"/>
</ribbon:RibbonGallery>
</ribbon:RibbonComboBox>

关于c# - 如何将列表从数据库绑定(bind)到 RibbonComboBox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7308885/

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