• 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更多详细更新请移步>>

  • 相关阅读:
    [redis] 普通 RedisPool 的 CRUD 实现
    [maven] 常用仓库地址
    [saiku] 通过 saiku 的 DEMO 分析 connection
    [backbone]backbone.js
    [saiku] JCR在saiku中的运用原理
    [redis] 分布式 Redis 的 CRUD 实现
    [redis] session 保存到 redis 简单实现
    [redis] redis 存取键值对常用的三种使用方式
    226. Invert Binary Tree
    225. Implement Stack using Queues
  • 原文地址:https://www.cnblogs.com/icebing/p/3335014.html
Copyright © 2020-2023  润新知