12345678910111213141516171819202122232425 |
- using LYFZ.ComponentLibrary;
- 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.Customers
- {
- public partial class Othercustomers : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public Othercustomers()
- {
- InitializeComponent();
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- UcNavigationTool.LabTitle = "其他客户";
- }
- }
- }
|