CashbackInfoSuperSmallForm.cs 1007 B

1234567891011121314151617181920212223242526272829303132
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
  11. {
  12. public partial class CashbackInfoSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public CashbackInfoSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  19. this.Load +=CashbackInfoSuperSmallForm_Load;
  20. }
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. protected virtual void CashbackInfoSuperSmallForm_Load(object sender, EventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. }
  31. }