摘要:https://www.devexpress.com/Support/Center/Example/Details/T333879
阅读全文
随笔分类 - XAF
eXpress Application Framework
摘要:為了提升用戶使用體驗,特擴展此功能(來源與Xafari Framework)。1.可在模型編輯器中設置是否啓用,默認啓用。2.DataAccessMode為Client模式才啓用。其它模式自動關閉。3.詳見代碼。 4.當有篩選條件時有Bug,還有待解決,才能上綫使用!
阅读全文
摘要:【自己的解决方案】数据量大时,可显著提升用户使用体验! 1.Root ListView 参考官方的E1554 点击导航菜单后首先跳出查询条件设置窗体进行设置 可设置查询方案或查询方案的查询条件,排序字段、排序方向,是否只查询前1000条。 2.LookupListView 可设置 TopReturn
阅读全文
摘要:ASP.NET: http://www.screencast.com/t/OHhcHD9vyWinForms:http://www.screencast.com/t/8M8K4eskkYO9
阅读全文
摘要:public class ViewController1 : ViewController { ListViewProcessCurrentObjectController controller; protected override void OnActivat...
阅读全文
摘要:using System;using DevExpress.ExpressApp;using DevExpress.ExpressApp.Win.Editors;using DevExpress.Utils.Menu;using DevExpress.XtraGrid.Menu;using DevE...
阅读全文
摘要:First, I suggest that you review the following topic to learn how to show a custom set of objects in a ListView:How to: Display a List of Non-Persiste...
阅读全文
摘要:XAF给的例子已经实现,详细可查看例子中的代码。工作车间--工作中心--机器
阅读全文
摘要:2014年好久没有更新Blog了,工作调换了,很少用XAF,但还是很关注XAF的发展和学习,对中国的中小企业数据管理软件开发真的太实用了!!功能比较简单,但很实用,直接上图和代码!ListView處於ListViewAndDetailView編輯模式using System;using System...
阅读全文
摘要:XAF How to show custom forms and controls in XAF (Example)https://www.devexpress.com/Support/Center/Example/Details/E911
阅读全文
摘要:How to Show Usual Winform as View in XAFhttp://www.codeproject.com/Tips/464188/How-to-Show-Usual-Winform-as-View-in-XAFHow to show custom forms and controls in XAF (Example)https://www.devexpress.com/Support/Center/Example/Details/E911
阅读全文
摘要:http://blog.zerosharp.com/three-ways-to-store-a-list-of-currency-codes-in-xaf/
阅读全文
摘要:How to: Disable Property Editors Based on a Business Rule// Developer Express Code Central Example:// How to: Disable Property Editors Based on a Business Rule// // This example demonstrates how to hide and disable property editors via the// Conditional Appearance module (the obsolete Conditional Ed
阅读全文
摘要:using System;using DevExpress.ExpressApp;using DevExpress.ExpressApp.Win.Editors;using DevExpress.Utils.Menu;using DevExpress.XtraGrid.Menu;using DevExpress.XtraGrid.Views.Grid;namespace E968.Module{ public class ListViewFooterMenuViewController : ViewController { public...
阅读全文
摘要:http://www.devexpress.com/Support/Center/p/Q478931.aspx
阅读全文
[原] XAF How to see and edit the time part in the DatePropertyEditor for the System.DateTime property
摘要:http://www.devexpress.com/Support/Center/Example/Details/E1497using System;using DevExpress.ExpressApp.Model;using DevExpress.ExpressApp.Editors;using DevExpress.ExpressApp.Win.Editors;namespace WinSolution.Module.Win { [PropertyEditor(typeof(DateTime))] public class MyDatePropertyEditor : Dat...
阅读全文
摘要://UpdatedOn, UpdatedBy, CreatedOn, CreatedBy [PersistentAlias("[<AuditDataItemPersistent>][Contains(AuditedObject.TargetKey, ToStr(^.Oid))].Max(ModifiedOn)")] public DateTime ModifiedOn { get { return Convert.ToDateTime(EvaluateAlias("ModifiedOn")); } ...
阅读全文
摘要://可以复制粘贴行,单元格,或从Excel复制粘贴到相应的ListView当中。using System;using System.ComponentModel;using System.Collections.Generic;using System.Diagnostics;using System.Text;using DevExpress.ExpressApp;using DevExpress.ExpressApp.Actions;using DevExpress.Persistent.Base;using DevExpress.ExpressApp.Win.Editors;using
阅读全文
摘要:http://www.devexpress.com/Support/Center/p/E1744.aspx
阅读全文
摘要:How to restore deleted objects (records)http://www.devexpress.com/Support/Center/ViewKBIssue.aspx?kbid=A753简单的说GCRecord的值不为空为标志删除,如果要恢复删除就需要将其改为空值(Null)即可!
阅读全文