frmCustommenuManager.cs 834 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.OAShopManagement
  10. {
  11. public partial class frmCustommenuManager : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmCustommenuManager()
  14. {
  15. InitializeComponent();
  16. this.Text = "微信公众号自定义菜单管理";
  17. this.UcNavigationTool.LabTitle = this.Text;
  18. this.plMenuManager.BackColor = LYFZ.ComponentLibrary.UIBlueThemeResources.AreaBackgroundColor;
  19. this.plMenuManager.BorderColor = LYFZ.ComponentLibrary.UIBlueThemeResources.BorderAreaColor;
  20. this.plMenuManager.BorderStyle = BorderStyle.FixedSingle;
  21. }
  22. }
  23. }