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; using LYFZ.ComponentLibrary; namespace LYFZ.Software.UI.InitialSet { public partial class FrmAttractionsSet : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmAttractionsSet() { InitializeComponent(); this.dgv.RefreshTheme(); this.dgv2.RefreshTheme(); this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx5.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx5.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.Load += FrmAttractionsSet_Load; this.Shown += FrmAttractionsSet_Shown; this.btnSave.Click += new EventHandler(btnSave_Click); this.btnDelete.Click += new EventHandler(btnDelete_Click); this.txtTsc_CostPrice.KeyPress += new KeyPressEventHandler(txtTsc_CostPrice_KeyPress); this.txtTsc_SalesPrice.KeyPress += new KeyPressEventHandler(txtTsc_SalesPrice_KeyPress); this.btnAdd.Click += new EventHandler(btnAdd_Click); this.btnSave2.Click += btnSave2_Click; this.btnDelete2.Click += btnDelete2_Click; this.btnClose2.Click += btnClose2_Click; this.dgv2.Click += dgv2_Click; this.btnAdd2.Click += btnAdd2_Click; } protected virtual void FrmAttractionsSet_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnAdd2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void dgv2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnClose2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnDelete2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnSave2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmAttractionsSet_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnAdd_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void txtTsc_SalesPrice_KeyPress(object sender, KeyPressEventArgs e) { } protected virtual void txtTsc_CostPrice_KeyPress(object sender, KeyPressEventArgs e) { } protected virtual void btnDelete_Click(object sender, EventArgs e) { } protected virtual void btnSave_Click(object sender, EventArgs e) { } } }