GoldCardViceManagementSmallForm.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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.SetSmallForm
  11. {
  12. public partial class GoldCardViceManagementSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardViceManagementSmallForm()
  15. {
  16. InitializeComponent();
  17. this.dgvData.RefreshTheme();
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.labelEx8.ForeColor = UIBlueThemeResources.TitleTextColor;
  20. this.Load += GoldCardViceManagementSmallForm_Load;
  21. }
  22. /// <summary>
  23. /// 加载事件
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. protected virtual void GoldCardViceManagementSmallForm_Load(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. }
  32. }