1、 如何给节点添加图片? 首先需要添加一个图片控件,然后给它加入图片,最后把TreeList的节点图片属性和图片控件绑定,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
ImageList imagelist; private void 测试窗口_Load( object sender, EventArgs e)
{ con.ConnectionString = sqlconstr; DataTable dt = new DataTable;
dt.Columns.Add( "进程" );
dt.Rows.Add( "123" );
treeList1.Dock = DockStyle.Fill; treeList1.DataSource = dt; imagelist = new ImageList;
imagelist.Images.Add(Image.FromFile( @"E:\图片素材\2.jpg" ));
treeList1.SelectImageList = imagelist; treeList1.Nodes[0].ImageIndex = 0; } |
2、 如何将背景色设为透明?
1
2
3
|
treeList1.BackColor = Color.Transparent; treeList1.Appearance.Empty.BackColor = Color.Transparent; treeList1.Appearance.Row.BackColor = Color.Transparent; |
3、 如何展开当前节点和父节点?
1
2
3
4
5
6
7
8
|
/// <summary> /// 展开当前节点及父节点 /// </summary> /// <param name="_node"> public void ParentNodeExpend(TreeListNode _node)
{ TreeListNode _cNode = _node;
treeList1..Nodes.TreeList.FindNodeByID(_cNode.Id).Expanded = true ;
|
4、 如何设置显示水平滚动条?
1
2
3
|
public void TreeListHorzScroll(TreeList treeList)
{ treeList.OptionsView.AutoWidth = false ;
|
下面看下DevExpress常见问题解决方案
layoutControl:
1.lookAndFeel。
2.OptionsView 之 AllowHotTrack【鼠标放上去变色】,DrawItemBorders【控件边框是否显示】
3.BeginInvoke(new MethodInvoker(delegate { textEdit1.Focus()})); 【获取焦点】
4.layoutControl1.OptionsItemText.TextAlignMode=AlignInLayoutControl.(设置拖放控件后,控件自动跟原有内容调整)查看图片
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
GridView :
1.属性 IndicatorWidth, 设置GirdView最左端列宽度【自动生成列,跟绑定的数据列没有关系】。
2.禁用每个列排序, this.gridView1.OptionsCustomization.AllowSort = false;
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
TreeList:
1.每个列禁用排序,设置每个列的 OptionsColumn.AllowSort = false,在Run Designer每个列中都可看到该属性;
DateEdit:
1、禁用鼠标滚动。
1
2
3
4
5
|
dateEdit1.Spin += new DevExpress.XtraEditors.Controls.SpinEventHandler(dateEdit1_Spin);
void dateEdit1_Spin(object sender, DevExpress.XtraEditors.Controls.SpinEventArgs e)
{
e.Handled = true ;
}
|
以上所述是小编给大家介绍的DevExpress TreeList 常见问题解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!