ButtonTel.cs 359 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.ComponentLibrary
  6. {
  7. public class ButtonTel : ButtonExpand
  8. {
  9. public ButtonTel()
  10. : base(LYFZ.ComponentLibrary.GetUIResources.btn_tel)
  11. {
  12. this.BackImg = LYFZ.ComponentLibrary.GetUIResources.btn_tel;
  13. }
  14. }
  15. }