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.HospitalTrackingSystem
- {
- public partial class IntentionsEntered : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public IntentionsEntered()
- {
- InitializeComponent();
- this.UcNavigationTool.LabTitle = "意向单录入";
- this.panelEx2999.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- //this.panelEx2999.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx2999.BorderStyle = BorderStyle.None;
- }
- }
- }
|