zoukankan      html  css  js  c++  java
  • DevExpress更新至13.1.7

    DevExpress下的.NET界面组件 DXperience Universal Suite 最新发布13.1.7版,多个属性的定义方式发生变化,另外还有大量的bug修复。使用DevExpress朋友一定要注意以下更新:

    >>下载

    DXControls for WPF

    IDialogService.ShowDialog 方法的定义方式变化,之前的定义是:

    1
    MessageBoxResult ShowDialog(MessageBoxButton button, string title, string documentType, object parameter, object parentViewModel, bool useParameterAsViewModel);

    新的定义方式:

    1
    UICommand ShowDialog(IList<UICommand> dialogCommands, MessageBoxButton? dialogButtons, string title, string documentType, object viewModel, object parameter, object parentViewModel);

    建议不直接调用IDialogService.ShowDialog,用DialogServiceExtensions类提供的扩展方法代替。下面是这个类以前提供的方法定义:

    1
    2
    3
    public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton button, string title, object viewModel)
              public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton button, string title, string documentType, object viewModel)
              public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton button, string title, string documentType, object parameter, object parentViewModel)

    当前新定义:

    1
    2
    3
    4
    5
    6
    public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton dialogButtons, string title, object viewModel)
              public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton dialogButtons, string title, string documentType, object viewModel)
              public static MessageBoxResult ShowDialog(this IDialogService service, MessageBoxButton dialogButtons, string title, string documentType, object parameter, object parentViewModel)
              public static UICommand ShowDialog(this IDialogService service, IList<UICommand> dialogCommands, string title, object viewModel)
              public static UICommand ShowDialog(this IDialogService service, IList<UICommand> dialogCommands, string title, string documentType, object viewModel)
              public static UICommand ShowDialog(this IDialogService service, IList<UICommand> dialogCommands, string title, string documentType, object parameter, object parentViewModel)

    IDocumentManagerService 提供的CreateDocument方法,以前的定义方式:

    1
    IDocument CreateDocument(string documentType, object parameter = null, object parentViewModel = null, bool useParameterAsViewModel = false);

    新的定义方式:

    1
    IDocument CreateDocument(string documentType, object viewModel, object parameter, object parentViewModel);

    DocumentManagerServiceExtensions类包含一个扩展 CreateDocument,以前的定义方式:

    1
    public static IDocument CreateDocument(this IDocumentManagerService service, object viewModel)

    在13.1.7,定义方式改为:

    1
    2
    3
    4
    public static IDocument CreateDocument(this IDocumentManagerService service, object viewModel)
              public static IDocument CreateDocument(this IDocumentManagerService service, string documentType, object viewModel)
              public static IDocument CreateDocument(this IDocumentManagerService service, string documentType, object parameter, object parentViewModel)
              public static IDocument CreateDocument(this IDocumentManagerService service, string documentType, object parameter, object parentViewModel, bool useParameterAsViewModel)

    DXMap for WPF

    • 自定义地图颜色的MapColorizer现在需要重载 MapColorizer.GetItemColor(以前是MapColorizer.ColorizeElement)

    Map for Windows 8 XAML

    • 自定义地图颜色的MapColorizer现在需要重载 MapColorizer.GetItemColor(以前是MapColorizer.ColorizeElement)

    Spreadsheet Document Server

    Workbook类的以下事件被删除:

    • ActiveSheetChanging;
    • ActiveSheetChanged;
    • ColumnsRemoved;
    • ColumnsInserted.
    • SelectionChanged;
    • SheetRenaming;
    • SheetRenamed;
    • SheetInserted;
    • SheetRemoved;
    • RowsRemoved;
    • RowsInserted;

    另外,提醒大家注意一下DevExpress发现的一个问题。这个bug将会在下一个版本中修复:

    • 如果CopyLocal属性被禁用,XtraReports LightSwitch demo无法在VS2013下运行

    DXperience Universal Suite 13.1.7更多详细更新请移步>>

  • 相关阅读:
    Python学习第二天
    Python学习第一天
    linux下使用命令修改IP地址
    Java消息队列
    转:《什么是敏捷软件测试》
    测试流程优化
    MacOS安装使用Kettle
    用OneNote写博客的方法
    Matlab给三维点云添加高斯噪声和随机噪声
    如何高效完成英文文献翻译
  • 原文地址:https://www.cnblogs.com/icebing/p/3335014.html
Copyright © 2011-2022 走看看