private void Print_OnAttachExport(object sender, EventArgs e)
 {
     if (m_print == null || m_Entity == null) return;
     Print print = new Print();
     //B_WorkRelation cEntity = new B_WorkRelation();
     //B_WorkRelation cEntity = ControlToEntity(false) as B_WorkRelation;//GetFormData(cEntity, Submit.保存);
     print.SetPrintAttachExport(m_print, m_Entity);
 }
        private void Print_OnAttachExport(object sender, EventArgs e)
        {
            if (m_print == null || m_Entity == null)
            {
                return;
            }
            Print print = new Print();

            //B_WorkRelation cEntity = new B_WorkRelation();
            //B_WorkRelation cEntity = ControlToEntity(false) as B_WorkRelation;//GetFormData(cEntity, Submit.保存);
            print.SetPrintAttachExport(m_print, m_Entity);
        }
        private void ucPrint_OnAttachExport(object sender, EventArgs e)
        {
            Print print = new Print();
            //B_WorkRelation cEntity = new B_WorkRelation();
            B_WorkRelation cEntity = null;

            if (base.IsPreview)
            {
                cEntity = base.EntityData != null ? base.EntityData as B_WorkRelation : new B_WorkRelation();
            }
            else
            {
                cEntity = ControlToEntity(false) as B_WorkRelation;//GetFormData(cEntity, Submit.保存);
            }
            print.SetPrintAttachExport(ucPrint, cEntity);
        }
 private void ucPrint_OnAttachExport(object sender, EventArgs e)
 {
     Print print = new Print();
     //B_WorkRelation cEntity = new B_WorkRelation();
     B_WorkRelation cEntity = null;
     if (base.IsPreview)
     {
         cEntity = base.EntityData != null ? base.EntityData as B_WorkRelation : new B_WorkRelation();
     }
     else
     {
         cEntity = ControlToEntity(false) as B_WorkRelation;//GetFormData(cEntity, Submit.保存);
     }
     print.SetPrintAttachExport(ucPrint, cEntity);
 }