ButtonEx.cs 304 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 ButtonEx:ButtonExpand
  8. {
  9. public ButtonEx() {
  10. this.IsShowText = true;
  11. this.Width = 85;
  12. this.Height = 28;
  13. }
  14. }
  15. }