1234567891011121314151617181920212223242526272829 |
- 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 IntentionsSelect : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public IntentionsSelect()
- {
- InitializeComponent();
- this.UcNavigationTool.LabTitle = "意向单查询";
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- }
- public LYFZ.UCPager.ucPagerEx UcPagerEx1
- {
- get { return this.ucPagerEx1; }
- set { this.ucPagerEx1 = value; }
- }
- }
- }
|