Winforms Interface Development DevExpress v19.2: charts, editor enhancements

DevExpress Winforms Controls built more than 140 UI controls and libraries, build perfect and smooth, beautiful and easy to use application. Whether it is Office-style interface, or analyze business data processing in large quantities, DevExpress WinForms can easily do the job! DevExpress Winforms v19.2日前正式发布啦! v19.2 released in enhanced Diagram, Editors control performance, etc., please immediately download v19.2 experience Oh!

Diagram
Organization Chart layout

Roles and relationships The new organizational structure of an automatic layout algorithm can be visualized entities (such as the corporate sector), use the upper hierarchy arranged in the shape of "tree graph" algorithm. The number of levels specified by the tree node OrgChartLayoutTreeLevelCount property.

The lower level of the hierarchy using the "tip-over" tree layout algorithm arrayed.

The new release DevExpress v19.2
Connector Label

In this version, you can add up to four text labels to the connectors. You can add two tags at the beginning and at the end add two labels.

The new API includes:

  • Start Label Left / Right Start Label
  • EndLeftLabel / EndRightLabel
  • Beginning Arrow Label Offset / Start Label Connector Offset
  • EndLabelArrowOffset / EndLabelConnectorOffset
The new release DevExpress v19.2
Editors
LookUp Editors - AutoSuggest mode (virtual search)

WinForms LookUpEdit and GridLookUpEdits controls support new user-friendly search options.

在AutoSuggest模式下,只要用户在其中输入文本,WinForms Lookup editor就会触发一个AutoSuggest事件。 您可以处理此事件并将异步任务分配给QuerySuggestions参数来填充查找列表,此异步任务应检查在查找中输入的文本,并为编辑器的下拉窗口返回一个项目集合。

lookUpEdit1.AutoSuggest += OnAutoSuggest;
// ...
// Setup(LookUp edit):
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSuggest;
void OnAutoSuggest(object sender, LookUpEditAutoSuggestEventArgs e) {
e.QuerySuggestions = (Task<ICollection>) ... ;
}

The new release DevExpress v19.2
Lookup Editors - AutoSearch模式

AutoSearch模式是为绑定的LookUpEdit和GridLookUpEdit控件设计的,自动搜索 "unlocks"编辑器的文本框,并允许用户在其中输入“搜索”条件。编辑器将隐藏与文本字段中输入的文本不匹配的数据源记录,并在其下拉窗口中显示匹配的条目。

要启用自动搜索模式,请将SearchMode属性设置为'AutoSearch'。

您可以处理自动搜索事件来微调搜索结果和/或自定义文本突出显示逻辑。

// Setup (default behavior)
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSearch;


// Customisation
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSearch;
lookUpEdit1.AutoSearch += OnAutoSearch;
// ...
void OnAutoSearch(object sender, LookUpEditAutoSearchEventArgs e) {
e.SetParameters(...);
}

The new release DevExpress v19.2
TimeSpan Edit Mask

The new TimeSpan and TimeSpanAdvancingCaret mask allows end users to enter the interval, two masks supports negative interval.

The new release DevExpress v19.2

===============================================================

DevExpress v19.2 new release, please stay tuned to the latest developments DevExpress Chinese net!

DevExpress Chinese net official website QQ group: 540 330 292 welcome into the group together to discuss

Scan attention DevExpress Chinese micro-channel public network number, timely access to the latest developments and the latest information

DevExpress Chinese micro-channel network

Guess you like

Origin www.cnblogs.com/AABBbaby/p/11818861.html