12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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.DressView
- {
- public partial class FrmRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmRecord()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.dgv.RefreshTheme();
- this.Shown += FrmRecord_Shown;
- this.radAll.Click += radAll_Click;
- this.radNotyet.Click += radNotyet_Click;
- }
- protected virtual void radNotyet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radAll_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmRecord_Shown(object sender, EventArgs e)
- {
- }
- }
- }
|