示例#1
0
 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
 ///
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
 ///
 ///
 public void OnPrinterPropertyChange(SPrinterProperty sp)
 {
     if (SPrinterProperty.IsEpson(sp.ePrinterHead))
     {
         this.m_CheckBoxBeepBeforePrint.Visible = false;
     }
     if (sp.EPSONLCD_DEFINED)
     {
         m_labelLang.Visible = m_ComboBoxLang.Visible = false;
         m_CheckBoxDelJobAfterPrint.Location = m_labelUnit.Location;
         m_labelUnit.Location    = m_labelLang.Location;
         m_ComboBoxUnit.Location = m_ComboBoxLang.Location;
     }
     this.checkBoxShowAttention.Visible        = sp.IsDisplayForm();
     this.checkBoxShowMeasurBeforPrint.Visible = sp.IsZMeasurSupport;
     this.isDirty = false;
 }