123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.OAShopManagement
- {
- public partial class frmCustommenuManager : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public frmCustommenuManager()
- {
- InitializeComponent();
- this.Text = "微信公众号自定义菜单管理";
- this.UcNavigationTool.LabTitle = this.Text;
- this.plMenuManager.BackColor = LYFZ.ComponentLibrary.UIBlueThemeResources.AreaBackgroundColor;
- this.plMenuManager.BorderColor = LYFZ.ComponentLibrary.UIBlueThemeResources.BorderAreaColor;
- this.plMenuManager.BorderStyle = BorderStyle.FixedSingle;
- }
- }
- }
|