惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
V
V2EX
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
月光博客
月光博客
云风的 BLOG
云风的 BLOG

博客园 - 木人(我现在不是老大)

ERP系统的专业化发展趋势 讨厌的real和float数据 Svcutil使用点滴 windows server2003企业版64位安装sql server2008企业版64位 读书笔记 UltraGrid(16) 水晶报表使用push模式(2) 水晶报表使用push模式(1) SQL SERVER2000存储过程调试 读书笔记 UltraGrid(15) 读书笔记 UltraGrid(14) 读书笔记 UltraGrid(12) 读书笔记 UltraGrid(11) 读书笔记 UltraGrid(10) 读书笔记 UltraGrid(9) 读书笔记 UltraGrid(8) 读书笔记 UltraGrid(7) 读书笔记 UltraGrid(6) 读书笔记 UltraGrid(4) 读书笔记 UltraGrid(3)
读书笔记 UltraGrid(5)
木人(我现在不是老大) · 2012-02-10 · via 博客园 - 木人(我现在不是老大)

外观控制:
行列线条控制:
this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = UIElementBorderStyle.Dotted  ;
this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = UIElementBorderStyle.Dotted;

行选择头格式:
this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderStyle = RowSelectorHeaderStyle.SeparateElement;

行头序号
this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = RowSelectorNumberStyle.ListIndex;

列排序
this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = HeaderClickAction.SortMulti;这个允许多列参与排序,使用shift键;

行选择器宽度
this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 30;

空行特性
this.ultraGrid1.DisplayLayout.EmptyRowSettings.ShowEmptyRows = true;
this.ultraGrid1.DisplayLayout.EmptyRowSettings.Style =EmptyRowStyle.AlignWithDataRows ;

允许增加新行
this.ultraGrid1.DisplayLayout.Override.AllowAddNew = AllowAddNew.TemplateOnBottom;

界面过滤
this.ultraGrid1.DisplayLayout.Override.FilterUIType = FilterUIType.FilterRow;
this.ultraGrid1.DisplayLayout.Override.FilterOperandStyle = FilterOperandStyle.Combo;
this.ultraGrid1.DisplayLayout.Override.FilterOperatorLocation = FilterOperatorLocation.Hidden;
this.ultraGrid1.DisplayLayout.Override.FilterClearButtonLocation = FilterClearButtonLocation.Row;

单元格折行
this.ultraGrid1.DisplayLayout.Override.CellMultiLine = DefaultableBoolean.True;


取消行选择器
this.ultraGrid1.DisplayLayout.Override.RowSelectors = DefaultableBoolean.False;