提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|产品更新|编辑:龚雪|2014-03-19 14:00:24.000|阅读 470 次
概述:DXperience Universal Suite 发布 v13.2.8 版本,被运用于导出的目标元素的过滤值不再包含于元素命名中。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
DXperience Universal Suite 是全球使用最多的.NET用户界面控件套包。它主要的特点是:高效率和高实用性,拥有大量丰富的示例和帮助文档,开发者能够快速上手。在国内,DevExpress也拥有大量用户,资料比较完善,相互交流方便。现在更新至v13.2.8,下面让我们一起来看看更新详情内容。
点击下载DXperience Universal Suite
ASP.NET MVC 导航、布局和多用途扩展。
ClientEnabled 和 ClientVisible 字段已经被从MenuItemState、NavBarItemState 和 TreeViewNodeState 类中移除。
ASP.NET 导航、布局和多用途控件。
相关于ASPxMenu gutter的属性行为已经被改变。
现在,gutter不再影响项目图像和文本位置,如下属性被废弃:
CodedUIExtension.DXTestControls.AppearanceObject 类已经被移动到DevExpress.CodedUIExtension.DXTestControls.v13_2 namespace。
该变化避免当在一个项目上使用几个DevExpress Coded UI扩展程序集产生类型冲突。
为了能够编译一些项目,有必要手动在现有测试中指定新的命名空间。
Dashboard
IDocumentViewModel.Close 方法已经改变,即使IDocument.DestroyOnClose 属性被禁用,它也会被调用。
为回到以前的行为,你可以手动用 IDocumentManagerService对象检查IDocument.DestroyOnClose 属性值,如以下代码所示:
用POCO视图模式:
[C#] [POCOViewModel] public class MainViewModel : IDocumentViewModel { bool IDocumentViewModel.Close() { if(!DocumentManagerService.FindDocument(this).DestroyOnClose) return true; // ... return true; } protected virtual IDocumentManagerService DocumentManagerService { get { return null; } } }
[VB.NET] <POCOViewModel> _ Public Class MainViewModel Implements IDocumentViewModel Private Function IDocumentViewModel_Close() As Boolean Implements IDocumentViewModel.Close If Not DocumentManagerService.FindDocument(Me).DestroyOnClose Then Return True End If ' ... Return True End Function Protected Overridable ReadOnly Property DocumentManagerService() As IDocumentManagerService Get Return Nothing End Get End Property End Class
不用POCO视图模式:
[C#] public class MainViewModel : ViewModelBase, IDocumentViewModel { bool IDocumentViewModel.Close() { if(!ServiceContainer.GetService<IDocumentManagerService>().FindDocument(this).DestroyOnClose) return true; // ... return true; } }
[VB.NET] Public Class MainViewModel Inherits ViewModelBase Implements IDocumentViewModel Private Function IDocumentViewModel_Close() As Boolean Implements IDocumentViewModel.Close If Not ServiceContainer.GetService(Of IDocumentManagerService)().FindDocument(Me).DestroyOnClose Then Return True End If ' ... Return True End Function End Class
DXSpreadsheet for WPF
SpreadsheetControl.Options 属性已经改变,返回的是DevExpress.Xpf.Spreadsheet.SpreadsheetControlOptions 对象,而非DevExpress.Spreadsheet.DocumentOptions 类实例。
XtraSpreadsheet
DevExpress.Spreadsheet命名空间——ConditionalFormattingExtremumValue、ConditionalFormattingInsideValue 和 ConditionalFormattingIconSetInsideValue 界面已经被废弃。
ConditionalFormattingCollection 集的CreateExtremumValue/CreateInsideValue 和CreateIconSetInsideValue 方法已经被废弃。
从前:
[C#] ConditionalFormattingExtremumValue CreateExtremumValue(ConditionalFormattingValueType valueType, string value); ConditionalFormattingExtremumValue CreateExtremumValue(); ConditionalFormattingInsideValue CreateInsideValue(ConditionalFormattingValueType valueType, string value); ConditionalFormattingIconSetInsideValue CreateIconSetInsideValue(ConditionalFormattingValueType valueType, string value, ConditionalFormattingValueOperator comparisonOperator);
现在:
[C#] ConditionalFormattingValue CreateValue(ConditionalFormattingValueType valueType, string value); ConditionalFormattingValue CreateValue(ConditionalFormattingValueType valueType); ConditionalFormattingIconSetValue CreateIconSetValue(ConditionalFormattingValueType valueType, string value, ConditionalFormattingValueOperator comparisonOperator);
ConditionalFormattingCollection 集的AddColorScale2ConditionalFormatting、AddColorScale3ConditionalFormatting、AddDataBarConditionalFormatting 和 AddIconSetConditionalFormatting 方法已经被改变。
从前:
[C#] ColorScale2ConditionalFormatting AddColorScale2ConditionalFormatting(Range range, ConditionalFormattingExtremumValue minPoint, Color minPointColor, ConditionalFormattingExtremumValue maxPoint, Color maxPointColor); ColorScale3ConditionalFormatting AddColorScale3ConditionalFormatting(Range range, ConditionalFormattingExtremumValue minPoint, Color minPointColor, ConditionalFormattingInsideValue midPoint, Color midPointColor, ConditionalFormattingExtremumValue maxPoint, Color maxPointColor); DataBarConditionalFormatting AddDataBarConditionalFormatting(Range range, ConditionalFormattingExtremumValue lowBound, ConditionalFormattingExtremumValue highBound, Color color); IconSetConditionalFormatting AddIconSetConditionalFormatting(Range range, IconSetType iconSet, ConditionalFormattingIconSetInsideValue[] points);
现在:
[C#] ColorScale2ConditionalFormatting AddColorScale2ConditionalFormatting(Range range, ConditionalFormattingValue minPoint, Color minPointColor, ConditionalFormattingValue maxPoint, Color maxPointColor); ColorScale3ConditionalFormatting AddColorScale3ConditionalFormatting(Range range, ConditionalFormattingValue minPoint, Color minPointColor, ConditionalFormattingValue midPoint, Color midPointColor, ConditionalFormattingValue maxPoint, Color maxPointColor); DataBarConditionalFormatting AddDataBarConditionalFormatting(Range range, ConditionalFormattingValue lowBound, ConditionalFormattingValue highBound, Color color); IconSetConditionalFormatting AddIconSetConditionalFormatting(Range range, IconSetType iconSet, ConditionalFormattingIconSetValue[] points);
SpreadsheetBehaviorOptions.Printing 属性已经被 SpreadsheetBehaviorOptions.Print 属性取代。
带有Bar UI的标准打印预览窗口已经被带Ribbon UI的窗口取代。
默认情况下,当终端用户在SpreadsheetControl的UI中点击Print Preview按钮时,Ribbon Print Preview 被调用。
为了让带有Bar UI的打印预览窗口对于终端用户可用,禁用 SpreadsheetPrintOptions.RibbonPreview 属性。
为了在代码中调用Ribbon Print Preview形式,需使用SpreadsheetControl.ShowRibbonPrintPreview 方法。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:慧都控件网知名C/C++开发工具CLion全新发布v2024.3,新版本新语言引擎有显著改进等,欢迎下载新版体验!
强大的VS插件CodeRush已正式发布v24.2.3,新版本现在可以运行xUnit.Net v3测试等,欢迎下载最新版体验!
Spire.PDF 10.12.4 最新版本支持在进行多页打印时设置自动旋转方向。同时,一些已知问题也在本次更新中被成功修复,例如打印 PDF 文档时内容丢失的问题,欢迎下载体验~
日程安排控件dhtmlxScheduler v7.2全新发布,新版本增强并增加了编辑、修改等多个操作体验,欢迎下载最新版试用~
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢