如何使用DevExpress
:
1. TreeView
基于数据库?
2. TreeView
与数据库同步了?
更改了该行的内容 - >数据库已更新。
Dragged the subordinate line to another node -> the database was updated.
3。为了在节点之间拖放TreeView
元素。
如何在“设计师”或编程的帮助下解决所有问题。
在“1”问题上,我意识到我们需要创建TreeList
,然后将TreeList.ViewStyle
属性设置为TreeView
。
所以它写在文档
我创建了TreeList
。
我可以在哪里更改属性TreeList.ViewStyle
?
如何制作TreeView
?
项目 - link
答案 0 :(得分:0)
请查看How to make the TreeList control look like a TreeView示例,其中说明了如何实现目标。
查看TreeList的TreeView Style文档即可 通过设置TreeList.ViewStyle属性
来更改视图
示例:
private void Form1_Load(object sender, EventArgs e) {
treeList1.ForceInitialize();
treeList1.Appearance.FocusedCell.BackColor = System.Drawing.SystemColors.Highlight;
treeList1.Appearance.FocusedCell.ForeColor = System.Drawing.SystemColors.HighlightText;
treeList1.OptionsBehavior.Editable = false;
treeList1.ViewStyle = DevExpress.XtraTreeList.TreeListViewStyle.TreeView;
}