已经快到2015 年了。 14.2.1 beta 才出来了。

还好,有一些新东西。

官网地址

VCL Gauge Control

Designed to clearly convey information at a glance, gauges are a significant data visualization part of dashboards. Communicate appropriate intelligence with a variety of circular, linear and digital gauges that help depict data varying with time.

This version ships with three gauge types (both unbound and data-aware versions are available):

  • Circular (full, half and quarter)
  • Linear (horizontal and vertical)
  • Digital (7 and 14 segments)
Full Circular Gauges
 
 

You can select from a dozen built-in gauge styles or create your own if required.

VCL Rich Edit Control (CTP)

Word® Inspired Rich Text Editor

This release includes the community technology preview of our VCL Rich Text Editor. It enables your users to create or edit rich text documents with ease using a set of text formatting commands. Programmatically, these commands are implemented by Action objects. By simply liniking the Action objects to elements of your UI, such as ribbons, menus, and toolbars, you can easily create a powerful word processor in your application.

This initial version ships with the following features:

  • Character and paragraph formatting
  • Images
  • Styles
  • Lists (bulleted, numbered and multilevel)
  • Undo/Redo history
  • Clipboard operations
  • Overtype mode
  • Text highlight
  • Formatting marks visualization

Please note that the initial version of the Rich Edit Control is only supported using RAD Studio XE or later, and, furthermore, only in 32-bit apps. You are free to use this control in your applications today. However, be aware that it is a preview version and therefore the API, methods, properties, and/or features may change before the final release.

VCL Data Editors and Controls

Camera Control

The DevExpress ExpressEditors Library now ships with a new Camera Control. This allows your users to capture video and images from a built-in or connected camera (such as a webcam).

Toggle Switch Editor

Another addition to the ExpressEditors Library is a Windows UI-style check editor, a touch-friendly control designed to replace a traditional check box. Provided are unbound, data-aware, standalone, and in-place versions of the editor.

VCL Grid Control

Find Panel

With this release, our VCL Grid introduces a Find Panel – delivering an easy and straightforward way for end-users to locate information within the control. To execute a search, simply enter text within the Find box and the grid will display those records that have matching values.

Various options are available to control the display and behavior of the Find Panel. You can specify searchable columns, choose between delayed automatic and manual search modes, allow search strings to be highlighted within located records, etc. The Find Panel is available within all grid Views, except for Chart Views.

VCL Map Control

Take users where they want to go.

This version adds support for:

  • Bing Maps services (Geocode and Routes)
  • Location-based queries to Bing Maps services
  • Shapefile format files
Bing Maps Services - Geocoding
 
 

VCL Spreadsheet Control

Deliver Excel-inspired capabilities with ease.

The DevExpress VCL Spreadsheet Control now supports the following features:

  • Print settings stored in and loaded from spreadsheet files
  • Array formulas
 

VCL Layout Control

The VCL Layout Control now supports float groups. This feature makes it easy to implement docking capabilities with your layout elements.

 

Icon Library

We've extended our icon library with new Microsoft Office 2013 inspired icons. The library now includes about 2,000 icons.

Devexpress VCL Build v2014 vol 14.2.1 beta发布的更多相关文章

  1. Devexpress VCL Build v2014 vol 14.2.7发布

    2015年马上快过去一半了,这个玩意还在纠结在14版.其实也无所谓,反正就是改成15版,也还是这些 东西的修补. What's New in 14.2.7 (VCL Product Line)   N ...

  2. Devexpress VCL Build v2014 vol 14.2.6 发布

    终于支持XE8 了.需要这么长时间吗? New Major Features in 14.2 What's New in VCL Products 14.2 Feature Highlights To ...

  3. Devexpress VCL Build v2014 vol 14.2.5 发布

    和xe8 几乎同一天出来,但是目前官方不支持xe8. The following sections list all minor and major changes in DevExpress VCL ...

  4. Devexpress VCL Build v2014 vol 14.2.4 发布

    What's New in 14.2.4 (VCL Product Line)   New Major Features in 14.2 What's New in VCL Products 14.2 ...

  5. Devexpress VCL Build v2014 vol 14.1.4 发布

    虽然这次没加什么新东西,但是及时更新支持xe7,还算可以. What's New in 14.1.4 (VCL Product Line)   New Major Features in 14.1 W ...

  6. Devexpress VCL Build v2013 vol 14.1.5 发布

    What's New in 14.1.5 (VCL Product Line)   New Major Features in 14.1 What's New in VCL Products 14.1 ...

  7. Devexpress VCL Build v2014 vol 15.2.3 发布

    2016年第一个版本,继续修补. New Major Features in 15.2 What's New in VCL Products 15.2 Breaking Changes To lear ...

  8. Devexpress VCL Build v2013 vol 14.1.3 发布

    我修,我修,修修修. New Major Features in 14.1 What's New in VCL Products 14.1 Breaking Changes To learn abou ...

  9. Devexpress VCL Build v2015 vol 15.1.2发布

    2015年马上过半年了.终于第一个大版出来了. What's New in 15.1.2 (VCL Product Line)   New Major Features in 15.1 What's ...

随机推荐

  1. IOUtils总结

    参考:https://www.cnblogs.com/xing901022/p/5978989.html 常用的静态变量 在IOUtils中还是有很多常用的一些变量的,比如换行符等等 public s ...

  2. LiveBinding应用 dataBind 数据绑定

    http://blog.csdn.net/embarcaderochina/article/details/50352193 firemonkey grid/listview dataBind,数据绑 ...

  3. centoros 环境安装

    1. nginx rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.no ...

  4. JUC学习记录

    先附上学习的博客地址:http://blog.csdn.net/cx8122389/article/details/70049425, 具体见该博客 Java JUC 简介 在Java 5.0 提供了 ...

  5. scala-学习 1

    目录 变量定义 scala定义两种变量: var 可变 初始化之后,可以多次被重新赋值 val 不可变 一旦被初始化 就不能再赋值. var firstarg :java.lang.String = ...

  6. 给定一个十进制数,将其转化为N进制数-----17年滴滴笔试题

    题目:给定一个十进制数M,将其转化为N进制数,其中2<=N<=16,其中N为32为整型数; 输入:M N,如7 2 输出转化结果:111 注意点:考虑负数的情况,记得添加负号(其实直接添加 ...

  7. Alpha Level (Significance Level)

    1.Alpha Level (Significance Level,显著水平): What is it? 显著性水平α是指当零假设是正确的,但做出了错误决策的概率(即一类错误的概率).Alpha水平( ...

  8. edgeR

    1)简介 edgeR作用对象是count文件,rows 代表基因,行代表文库,count代表的是比对到每个基因的reads数目.它主要关注的是差异表达分析,而不是定量基因表达水平. edgeR wor ...

  9. ElementTree 解析xml(minidom解析xml大文件时,MemoryError)

    在使用minido解析xml文件时,因为文件过大,结果报错MemoryError.查询后得知是因为minidom在解析时是将所有文件放到内存里的,很占用内存,所以要考虑换一种方法来处理xml文件.   ...

  10. Telephone interview with Youyou Tu

    "Good News for the National Holiday!" Telephone interview with Youyou Tu following the ann ...