Example #1
0
File: F.cs Project: sanxchen/MntApp
        //    public virtual ICollection<FormSign> FormSigns { get; set; }



        public bool CreateForm(FormCreateEventArgs e)
        {
            return(this.OnFormCreate(e));
        }
Example #2
0
File: F.cs Project: sanxchen/MntApp
        protected virtual bool OnFormCreate(FormCreateEventArgs e)
        {
            FormCreateEventHander handler = FormCreate;

            return(handler != null && handler(this, e));
        }