zoukankan      html  css  js  c++  java
  • xaf实现自定义只读参数

        using DevExpress.Persistent.Base;
        using System;
        // ...
        public class CurrentMonthParameter : ReadOnlyParameter {
        public CurrentMonthParameter() : base("CurrentMonth"typeof(int)) { }
        public override object CurrentValue {
        get {
        return DateTime.Now.Month;
        }
        }
        }
  • 相关阅读:
    小的面试题
    email
    网络
    进程,线程
    周日作业
    Python_day9
    Python_day8
    假期作业
    12/13
    Python_day7
  • 原文地址:https://www.cnblogs.com/ddlzq/p/2334855.html
Copyright © 2011-2022 走看看