123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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.InitialSet.PackagesGoods
- {
- public partial class FrmTheScenery : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmTheScenery()
- {
- InitializeComponent();
- this.Load += new EventHandler(FrmTheScenery_Load);
- this.btnRight.Click += new EventHandler(btnRight_Click);
- this.btnLeft.Click += new EventHandler(btnLeft_Click);
- this.btnSave.Click += new EventHandler(btnSave_Click);
- this.dgv.DoubleClick += new EventHandler(dgv_DoubleClick);
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- dgv.RefreshTheme();
- }
- protected virtual void dgv_DoubleClick(object sender, EventArgs e)
- {
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnRight_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnLeft_Click(object sender, EventArgs e)
- {
- }
- protected virtual void FrmTheScenery_Load(object sender, EventArgs e)
- {
- }
- }
- }
|