1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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.Dresses
- {
- public partial class FrmDressView : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmDressView()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- UcNavigationTool.LabTitle = "礼服查看";
- this.dgv.RefreshTheme();
- this.Shown += FrmDressView_Shown;
- this.btnSlect.Click += btnSlect_Click;
- this.btnRecord.Click += btnRecord_Click;
- }
- protected virtual void btnRecord_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSlect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmDressView_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|