Devexpress中Tdxnavbar的使用

简介:

1.声明

var
  tempitem:TdxnavbarItem;
  tempgroup:Tdxnavbargroup;

2.实现

  tempgroup:=dxnvbr1.Groups.Add;
  tempgroup.Caption := '中国地盘';
  
  tempitem:=dxnvbr1.Items.Add;
  tempitem.Caption:= '钓鱼岛';
  tempitem.OnClick := belongtochina;
  //tempitem.OnClick:= button1.OnClick; //绑定事件
  tempgroup.CreateLink(tempitem);

  tempitem:=dxnvbr1.Items.Add;
  tempitem.Caption := '台湾';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

/////////////////////////////////////////////

procedure TForm1.FormShow(Sender: TObject);
var
  tempitem:TdxnavbarItem;
  tempgroup:Tdxnavbargroup;
  tree :TTreeView;
  node:TTreeNode;
begin
  dxnvbr1.Items.Clear;
  tempgroup:=dxnvbr1.Groups.Add;
  tempgroup.Caption := '中国地盘';
  
  tempitem:=dxnvbr1.Items.Add;
  tempitem.Caption:= '钓鱼岛';
  tempitem.OnClick := belongtochina;
  //tempitem.OnClick:= button1.OnClick; //绑定事件
  tempgroup.CreateLink(tempitem);

  tempitem:=dxnvbr1.Items.Add;
  tempitem.Caption := '台湾';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

  tempgroup := dxnvbr1.Groups.Add;
  tempgroup.Caption := '一年四季';

  tempitem := dxnvbr1.Items.add;
  tempitem.Caption := '春天';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

  tempitem := dxnvbr1.Items.add;
  tempitem.Caption := '夏天';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

  tempitem := dxnvbr1.Items.add;
  tempitem.Caption := '秋天';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

  tempitem := dxnvbr1.Items.add;
  tempitem.Caption := '冬天';
  tempitem.OnClick := belongtochina;
  tempgroup.CreateLink(tempitem);

  tempgroup := dxnvbr1.Groups.Add;
  tempgroup.Caption := '病人树';
  tempitem := dxnvbr1.Items.Add;
  tempitem.caption := '病人树';
  
  tempgroup.createLink(tempitem);
end;

3.CxgridDbcardView添加Optioncustomersize cardexpanding...

 










本文转自鹅倌51CTO博客,原文链接: http://blog.51cto.com/kaixinbuliao/1006210,如需转载请自行联系原作者








相关文章
|
5月前
|
设计模式 开发框架 前端开发
DevExpress的WidgetView的使用介绍
DevExpress的WidgetView的使用介绍
|
数据安全/隐私保护
DevExpress-GridControl控件-GridView使用
DevExpress-GridControl控件-GridView使用
SwipeRefreshLayout 下拉刷新控件(一)
SwipeRefreshLayout 下拉刷新控件(一)
SwipeRefreshLayout 下拉刷新控件(二)
SwipeRefreshLayout 下拉刷新控件(二)
|
存储 C#
C#(三十)之C#comboBox ListView treeView
本篇内容记录了comboBox下拉列表框属性、ListView 列表视图属性、ListView 列表视图事件、treeView树状视图属性。
274 0
C#(三十)之C#comboBox ListView treeView
Devexpress treelist 控件属性大全
属性列表 1、OptionsSelection: EnableAppearanceForcusedCell:选中的Cell的Appearance设置是否可用。默认为True; EnableAppearanceForcusedRow:选中的Node的Appearance设置是否可用。
1746 0
DevExpress GridView 列标题点击事件
GridView有RowCellClick事件,即单元格点击事件,但是针对列标题行以及列标题单元格却没有相应的事件。 在这里使用GridView的MouseDown事件。这里同样使用的是GridHitInfo来获取点击位置的信息,来判断是否在列标题上。GridHitInfo根据鼠标点击的x、y坐标获取该点的相关信息,判断是否点击在列标题行内。 private void
1672 0
DevExpress GridControl Gridview RepositoryItemCheckEdit复选框及获取选择行数据
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/gisdoer/article/details/49250373 DevExpr...
1906 0
|
存储 数据库
在DevExpress GridControl的一列中显示图片
        作者:jiankunking 出处:http://blog.csdn.net/jiankunking         最近做项目的时候用到了将GridControl中一列设置为PictureEdit类型,然后通过这一列来显示图片。经过尝试发现有以下两种方式可行。 方法一、知道图片的路径与名称         比如:在数据库中存储了图片的路径(包括:本地路径、服务器路径),那么在
1531 0