彩票走势图

OpenExpressApp架构-内置支持的属性编辑方式

原创|其它|编辑:郝浩|2009-10-16 11:06:47.000|阅读 788 次

概述:Now OpenExpressApp support some property editors: base data type(string, datatime, enum) and some given type(dropdown lookup、memo、attachment)目前支持属性编辑方式有: 基础类型(字符串、日期、枚举)、特定类型(下拉列表、memo弹出框、附件)

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Now OpenExpressApp support some property editors: base data type(string, datatime, enum) and some given type(dropdown lookup、memo、attachment)

目前支持属性编辑方式有: 基础类型(字符串、日期、枚举)、特定类型(下拉列表、memo弹出框、附件)

类图如下:

下面分别对其他几种编辑方式进行简要说明,以便大家对这几种类型的使用有所了解。

1 基础类型

1.1 枚举

1.1.1 运行界面

1.1.2 类库编写

  1.1.2.1 定义枚举类型

    public enum BudgetType
    {
        [EnumAttr(
"不确定")]
        Unknown 
= 0,
        [EnumAttr(
"招标控制价源数据")]
        TenderPriceSource 
= 1,
        [EnumAttr(
"投标报价源数据")]
        TenderOfferSource 
= 2,
        [EnumAttr(
"调整预算源数据")]
        BudgetAdjustmentSource 
= 3,
        [EnumAttr(
"竣工结算源数据")]
        FinalAccountSource 
= 4,
        [EnumAttr(
"投标报价修正数据")]
        TenderOfferModified 
= 5,
        [EnumAttr(
"调整预算修正数据")]
        BudgetAdjustmentModified 
= 6,
        [EnumAttr(
"竣工结算修正数据")]
        FinalAccountModified 
= 7,
    }

  1.1.2.2 类库引用枚举类型

        private static PropertyInfo<BudgetType> BudgetTypeProperty =
        &nbsp;&nbsp;RegisterProperty(
new PropertyInfo<BudgetType>("BudgetType"));
        [Column][EntityProperty]
  &nbsp;     [ShowInListAttribute, ShowInDetail, Label(
"预算书类型")]
        
public BudgetType BudgetType
        {
            
get { return GetProperty(BudgetTypeProperty); }
    &nbsp;       
set { SetProperty(BudgetTypeProperty, value); }
        }

1.2 日期

1.2.1 运行界面

1.2.2 类库编写

        private static PropertyInfo<DateTime> SignDateProperty =
          RegisterProperty(
new PropertyInfo<DateTime>("SignDate"));
        [Column]
        [EntityProperty]
       &nbsp;[Required, ShowInListAttribute, ShowInDetail, Label(
"签约日期")]
        
public DateTime SignDate
        {
            
get { return GetProperty(SignDateProperty); }
        &nbsp;   
set { SetProperty(SignDateProperty, value); }
        }

2 下拉列表(列表和树形)

2.1 运行界面
                    

2.2 类库编写

 在对象属性上添加Lookup属性,系统自动会生成下拉编辑类型,如果下拉对象类型实现了ITreeNode接口,则会自动生成下拉树,否则下拉普通列表

        //项目合同科目
        private static PropertyInfo<Guid> projectContractSubjectIdProperty =
            RegisterProperty(
new PropertyInfo<Guid>("ProjectContractSubjectId"));
        [Column][EntityProperty][ShowInDetail]
        [Lookup(
"ProjectContractSubject", DataSourceProperty = "Project.ProjectContractSubjects")]
        [QueryItemValueType(QueryItemValueType.Id), NavigateQueryItem]
        
public Guid ProjectContractSubjectId
        {
       &nbsp; &nbsp;  
get { return GetProperty(projectContractSubjectIdProperty); }
            
set { SetProperty(projectContractSubjectIdProperty, value); }
        }

3 memo弹出框

3.1 运行界面

3.2 类库编写

在对象属性上添加Editor属性,指定编辑器为EditorNames.Memo类型

        private static PropertyInfo<string> DescriptionProperty =
          RegisterProperty(
new PropertyInfo<string>("Description"));
        [Column]
        [EntityProperty]
        [Required, ShowInList, Label(
"备注")]
        [OpenExpressApp.MetaAttribute.EditorAttribute(EditorNames.Memo)]
        
public string Description
        {
      &nbsp;     
get { return GetProperty(DescriptionProperty); }
       &nbsp; ;   
set { SetProperty(DescriptionProperty, value); }
        }

4 附件

4.1 运行界面

4.2 类库编写

在对象属性上添加Editor属性,指定编辑方式为EditorNames.FileData

        //FileAttachment
        private static PropertyInfo<Guid?> FileIdProperty =
         ;  &nbsp;RegisterProperty(
new PropertyInfo<Guid?>("FileId"));
        [Column][EntityProperty]
        [Editor(EditorNames.FileData)]
       ; [Lookup(
"FileAttachment"), ShowInList]
        
public Guid? FileId
        {
 &nbsp;      ;    
get { return GetProperty(FileIdProperty); }
    &nbsp;       
private set { SetProperty(FileIdProperty, value); }
        }

        
private static PropertyInfo<FileAttachment> FileAttachmentProperty =
&nbsp;      &nbsp;        RegisterProperty(
new PropertyInfo<FileAttachment>("FileAttachment"));
        
public FileAttachment FileAttachment
        {
            ;
get
            {
             &nbsp;  
return GetProperty(FileAttachmentProperty);
            }
    &nbsp;       
set
            {
                SetProperty(FileAttachmentProperty, value);
            }
        }



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:互联网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP