Exemplo n.º 1
0
Arquivo: F.cs Projeto: sanxchen/MntApp
        //    public virtual ICollection<FormSign> FormSigns { get; set; }



        public bool CreateForm(FormCreateEventArgs e)
        {
            return(this.OnFormCreate(e));
        }
Exemplo n.º 2
0
Arquivo: F.cs Projeto: sanxchen/MntApp
        protected virtual bool OnFormCreate(FormCreateEventArgs e)
        {
            FormCreateEventHander handler = FormCreate;

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