摘要: 1 //视图设计器中拖动一个barManager,添加一个bar,再添加一个BarEditItem控件,如下代码: 2 3 private: DevExpress::XtraEditors::Repository::RepositoryItemCheckEdit^ repositoryItemCheckEdit2; 4 private: DevExpress::XtraBars::BarEditItem^ biIsOR; 5 6 7 8 // 9 // biIsOR10 // 11 this->biIsOR->Caption = L"OR";12 th... 阅读全文
posted @ 2013-12-19 11:53 dot dot 小点点丶 阅读(6590) 评论(0) 推荐(0) 编辑
摘要: 莫名其妙报错需要在.h和.cpp文件中都引用:using namespace System::Collections;using namespace System::Collections::Generic; 阅读全文
posted @ 2013-12-19 10:56 dot dot 小点点丶 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 初始5个Nodes隐藏23节点,打印全部节点Tag显示23,打印全部节点Tag隐藏全部节点,打印节点TagTreeList.Nodes.Count == TreeList.AllNodesCount;知道这些后,可以通过隐藏节点,不必显示;而保存TreeList所有tag时,还是可以通过TreeList.Nodes[i]来保存隐藏节点的Tag值;注意的是,隐藏时:TreeList.Nodes[i].Visible =false ;TreeList.Nodes[i].Tag.parent = nullptr;TreeList.Ndoes[i].Tag.Visible =false ;不同的是,删 阅读全文
posted @ 2013-12-19 10:51 dot dot 小点点丶 阅读(399) 评论(0) 推荐(0) 编辑