ButtonForm.cs 568 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.IO;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.ComponentModel;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public class ButtonForm:ButtonExpand
  12. {
  13. public ButtonForm()
  14. : base(LYFZ.ComponentLibrary.GetUIResources.btn_Form)
  15. {
  16. this.BackImg = LYFZ.ComponentLibrary.GetUIResources.btn_Form;
  17. this.IsShowText = true;
  18. this.Width = 85;
  19. this.Height = 28;
  20. }
  21. }
  22. }