zoukankan      html  css  js  c++  java
  • How to: Customize a Built-in Property Editor (ASP.NET) 如何:自定义内置属性编辑器(ASP.NET)

    This topic describes how to customize a built-in XAF Property Editor for ASP.NET applications (refer to the How to: Customize a Built-in Property Editor (WinForms) topic to see the similar example for WinForms). In this example, the ASPxDateTimePropertyEditor is customized to display the calendar and the clock:

    本主题介绍如何为ASP.NET应用程序自定义内置 XAF 属性编辑器(请参阅"如何:自定义内置属性编辑器 (WinForms)"主题,请参阅 WinForms 的类似示例)。在此示例中,自定义 ASPxDateTimePropertyEditor 以显示日历和时钟:

    WebCalendarPropertyEditor

    Note 注意
    You can see the code demonstrated here along with more examples on custom property editors in the Feature Center Demo installed with XAF. The Feature Center demo is installed in %PUBLIC%DocumentsDevExpress Demos 19.2ComponentseXpressApp FrameworkFeatureCenter by default. The ASP.NET version of this demo is available online at http://demos.devexpress.com/XAF/FeatureCenter/
    您可以在使用 XAF 安装的功能中心演示中查看此处演示的代码以及有关自定义属性编辑器的更多示例。功能中心演示安装在%PUBLIC%DocumentsDevExpress Demos 19.2ComponentseXpressApp FrameworkFeatureCenter by default. The ASP.NET version of this demo is available online at http://demos.devexpress.com/XAF/FeatureCenter/

    .

    Inherit the Property Editor

    继承属性编辑器

    In the ASP.NET module project, inherit the ASPxDateTimePropertyEditor class. Note that your editor should be public. To customize the Property Editor's control used in the edit mode, override the SetupControl method. To specify that the Property Editor can be used for the DateTime type properties, apply the PropertyEditorAttribute attribute:

    在ASP.NET模块项目中,继承 ASPxDateTimePropertyEditor 类。请注意,您的编辑器应该是公开的。要自定义在编辑模式下使用的属性编辑器控件,请重写安装程序控制方法。要指定属性编辑器可用于 DateTime 类型属性,请应用属性编辑器属性:

    using System;
    using System.Web.UI.WebControls;
    using DevExpress.Web;
    using DevExpress.ExpressApp.Model;
    using DevExpress.ExpressApp.Editors;
    using DevExpress.ExpressApp.Web.Editors.ASPx;
    //...
    [PropertyEditor(typeof(DateTime), false)]
    public class CustomDateTimeEditor : ASPxDateTimePropertyEditor {
        public CustomDateTimeEditor(Type objectType, IModelMemberViewItem info) : 
            base(objectType, info) { }
        protected override void SetupControl(WebControl control) {
            base.SetupControl(control);
            if(ViewEditMode == ViewEditMode.Edit) {
                ASPxDateEdit dateEdit = (ASPxDateEdit)control;
                dateEdit.TimeSectionProperties.Visible = true;
                dateEdit.UseMaskBehavior = true;
            }
        }
    }

    Use the Customized Property Editor

    使用自定义属性编辑器

    To use the implemented Property Editor for a specific property, run the Model Editor in the APP.NET project and set the IModelCommonMemberViewItem.PropertyEditorType of the required OwnMember or ViewItem node to CustomDateTimeEditor.

    要对特定属性使用实现的属性编辑器,请使用APP.NET项目中运行模型编辑器,并将所需的"自有会员"或"ViewItem"节点的"IModelCommonMemberViewItem"类型设置为自定义日期时间编辑器。

    Tip 提示
    To use the implemented Property Editor for all DateTime properties, set the PropertyEditorAttribute constructor's defaultEditor parameter to true in the code above.
    要对所有 DateTime 属性使用实现的属性编辑器,请在上面的代码将属性编辑器属性构造函数的默认编辑器参数设置为 true。

    Note that the business class' property value associated with the created Property Editor should be formatted in order to display the time part of the DateTime value

    请注意,应设置与创建的属性编辑器关联的 Business 类属性值的格式,以便显示 DateTime 值的时间部分

    using DevExpress.ExpressApp.Model;
    //...
    [ModelDefault("DisplayFormat", "{0:MM.dd.yyyy hh:mm:ss}")]
    [ModelDefault("EditMask", "MM.dd.yyyy hh:mm:ss")]
    public DateTime CreatedOn { get; set;}

    For details, refer to the Format a Property Value topic.

    有关详细信息,请参阅设置属性值格式主题。

  • 相关阅读:
    罗尔定理、微分中值定理、广义微分中值定理
    高等数学和数学分析教材推荐及其学习方法浅谈
    音视频下载插件 安装及使用
    win10台式机rtl8188eu(FW 150 UM V2.0)无线网卡无法连接wifi(无法连接到这个网络)
    django模板中的extends和include使用方法
    wordpress中文目录出现“有点尴尬诶!该页无法显示"
    wordpress迁移后登陆时出现Forbidden You don’t have permission to access /wp-login.php on this server
    centos设置开机自启动脚本
    hexo的jacman主题设置语言为英文后偶尔出现中文
    安卓QQ聊天记录导出、备份完全攻略
  • 原文地址:https://www.cnblogs.com/foreachlife/p/How-to-Customize-a-Built-in-Property-Editor-ASP-NET.html
Copyright © 2011-2022 走看看