- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在互联网某处找到了 creating a menu dynamically using HierarchicalDataTemplate
的示例.
这是xaml:
<Window x:Class="WPF_Client.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ERP_Lite" Height="350" Width="525"
WindowState="Maximized" WindowStyle="None">
<Grid>
<Grid.Resources>
<XmlDataProvider x:Key="src" XPath="/myDoc/item">
<x:XData>
<myDoc xmlns="">
<item title="One" />
<item title="Two">
<item title="First Child" />
<item title="Second Child" />
<item title="Third Child" />
<item title="Fourth Child">
<item title="First Grand Child" />
<item title="Second Grand Child" />
<item title="Third Grand Child" />
</item>
</item>
<item title="Three" />
<item title="More" />
</myDoc>
</x:XData>
</XmlDataProvider>
</Grid.Resources>
<Menu DataContext="{StaticResource src}" ItemsSource="{Binding}">
<Menu.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding XPath=item}">
<TextBlock Text="{Binding XPath=@title}" />
</HierarchicalDataTemplate>
</Menu.ItemTemplate>
</Menu>
</Grid>
</Window>
ID | Title | ParentID
----+------------------------+-----------
1 | One | NULL
2 | Two | NULL
3 | Three | NULL
4 | Four | NULL
5 | First Child | 2
6 | Second Child | 2
7 | Third Child | 2
8 | Fourth Child | 2
9 | First Grand Child | 8
10 | Second Grand Child | 8
11 | Third Grand Child | 8
Model
,
the constructor of Node
而且您没有填写 Parent 或 Children 属性中的值,所以这一切都超出了我的范围,我尝试使用与您有所不同的方法。尽管您使用了参数化构造函数,但您从未向构造函数提供值,所以我真的觉得很难。
public partial class MenuItem
{
public MenuItem()
{
this.MenuItems1 = new HashSet<MenuItem>();
}
public int MenuItemID { get; set; }
public string Title { get; set; }
public Nullable<int> ParentID { get; set; }
public virtual ICollection<MenuItem> MenuItems1 { get; set; }
public virtual MenuItem MenuItem1 { get; set; }
}
public class MenuItemDTO
{
public int MenuItemID { get; set; }
public string Title { get; set; }
public Nullable<int> ParentID { get; set; }
}
public IEnumerable<MenuItemDTO> GetAllMenuItems()
{
using (Entities db = new Entities())
{
return (from m in db.MenuItems
select new MenuItemDTO
{
MenuItemID = m.MenuItemID,
Title = m.Title,
ParentID = m.ParentID
}).ToList();
}
}
public class MainWindowViewModel : MainViewModel
{
public MainWindowViewModel()
{
ERP_Lite_ServiceClient client = new ERP_Lite_ServiceClient();
Parents = new ObservableCollection<MenuItemDTO>
(client.GetAllMenuItems().Where(m => m.ParentID == null));
Children = new ObservableCollection<MenuItemDTO>
(client.GetAllMenuItems().Where(m => m.ParentID != null));
client.Close();
}
private ObservableCollection<MenuItemDTO> _parents;
public ObservableCollection<MenuItemDTO> Parents
{
get
{
return _parents;
}
set
{
_parents = value;
OnPropertyChanged("Parents");
}
}
private ObservableCollection<MenuItemDTO> _children;
public ObservableCollection<MenuItemDTO> Children
{
get
{
return _children;
}
set
{
_children = value;
OnPropertyChanged("Children");
}
}
}
<Menu ItemsSource="{Binding Parents}">
<Menu.ItemTemplate>
<HierarchicalDataTemplate DataType="{x:Type Service:MenuItemDTO}"
ItemsSource="{Binding Children}">
<TextBlock Text="{Binding Title}" />
</HierarchicalDataTemplate>
</Menu.ItemTemplate>
</Menu>
最佳答案
为了与 HierarchicalDataTemplate
合作您的 ViewModel 也需要分层。这意味着 ItemsSource
里面 HierarchicalDataTemplate
是相对于那个节点的。但是在您的代码中,您在同一个 ViewModel 中定义了 Parent 和 Children,
想想MenuItemDTO
作为树中的一个随机节点,因此它应该有一些具有相同类型的子节点( MenuItemDTO
)。
如果您设置 ItemsSource
的 Menu
至"{Binding Parents}"
这意味着菜单的顶级项目是 parent 。
现在,如果您设置 ItemsSource
的HierarchicalDataTemplate
至"{Binding Children}"
,它可以通过查看自己的 ItemsSource
来找到该节点的子节点.应该为树中的每个节点设置。
解决方案:
移动Children
至MenuItemDTO
.
那么您可能需要修改 GetAllMenuItems()
一点。
试试下面的代码(它已经过测试并且工作正常)。它返回 MenuItemDTO
的列表s 属于一级菜单,每个都有它的Children
递归填充。
树的第一级(菜单)= 没有父级的菜单项
public IEnumerable<MenuItemDTO> GetAllMenuItems()
{
using (Entities db = new Entities())
{
//get all items and put them in a simple list
var allItems = (from m in db.MenuItems
select new MenuItemDTO
{
MenuItemID = m.MenuItemID,
Title = m.Title,
ParentID = m.ParentID
}).ToList();
//define another list and put "only" root items in it
// this will have a hierarchical structure (By correcting the Children)
// and it's the output of this function
var roots = allItems.Where(x => x.ParentID == null);
//here we correct Children of each item
//since both allItems and roots share the same elements (call-by-reference)
//instead of searching through a tree, simply search through allItems
foreach (var item in allItems)
{
//find the correct parent for current item
var parent = allItems.FirstOrDefault(x => x.MenuItemID == item.ParentID);
//add the item to Children of its parent
// by doing this, one single item in both allItems
// and roots (or recursively in roots) will be corrected
if(parent!=null)
parent.Children.Add(item);
//if you don't want to miss any menu item:
//else roots.Add(item);
}
return roots;
}
}
关于c# - 使用 sql server 在 wpf 中动态创建菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22118003/
本周我将在 Windows Server 2008 上设置一个专用的 SQL Server 2005 机器,并希望将其精简为尽可能简单,同时仍能发挥全部功能。 为此,“服务器核心”选项听起来很有吸引力
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 已关闭 8 年前。 Improve
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
TFS 是否提供任何增强的方法来存储对 sql server 数据库所做的更改,而不是使用它来对在数据库上执行的 sql 语句的文本文件进行版本控制? 或者我正在寻找的功能是否仅在第 3 方工具(如
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我即将将我的 SQL Server 2012 实例升级到 SQL Server 2014。 我已经克隆了主机 Windows VM 并将其重命名为 foo-2012至 foo-2014 . 重新启动时
我想为 SQL Server 登录授予对数据库的访问权限。我知道 sp_grantdbaccess,但它已被弃用。我可以改用什么以及如何检查登录名是否还没有访问数据库的权限? 场景:UserA 创建数
客户别无选择,只能在接下来的几天内从 sql server 2000 迁移到 2008。测试显示 2005 年的重要功能出现了 Not Acceptable 性能下降,但 2008 年却没有。好消息是
我有一个测试数据库,我需要将其导出到我们客户的测试环境中。 这将是一次性的工作。 我正在使用 SQL Server 2005(我的测试数据库是 SQL Server 2005 Express) 执行此
我需要将一个 CSV 文件导入到 mongoDB 不幸的是我遇到了以下错误: error connecting to host: could not connect to server: se
我以为 R2 是一个补丁/服务包。我一直在寻找下载,但没有看到。因此,我假设 R2 是一个新版本,并且我需要 sqlserver 2008 r2 的安装介质来进行升级? 另外,我需要为新许可证付费吗?
我无法使用 SQL Server Management Studio 连接到 SQL Server。 我有一个连接字符串: 我尝试通过在服务器名中输入 myIP、在登录名中输入 MyID、在密码中
我们希望使用 SQL Server 加密来加密数据库中的几个列。我们还需要在生产和测试环境之间传输数据。看来最好的解决方案是在生产和测试服务器上使用相同的主 key 、证书和对称 key ,以便我可以
有没有可以分析 SQL Server 数据库潜在问题的工具? 例如: a foreign key column that is not indexed 没有 FILL FACTOR 的 uniquei
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
如果您使用 SQL Server 身份验证 (2005),登录详细信息是否以明文形式通过网络发送? 最佳答案 如您所愿,安全无忧... 您可以相当轻松地配置 SSL,如果您没有受信任的证书,如果您强制
我想将数据从一个表复制到不同服务器之间的另一个表。 如果是在同一服务器和不同的数据库中,我使用了以下 SELECT * INTO DB1..TBL1 FROM DB2..TBL1 (to copy w
我希望得到一些帮助,因为我在这个问题上已经被困了 2 天了! 场景:我可以从我的开发计算机(和其他同事)连接到 SERVER\INSTANCE,但无法从另一个 SQL Server 连接。我得到的错误
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
我是一名优秀的程序员,十分优秀!