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.FinancialManagement.OtherIncome { public partial class FrmOtherIncomeEntry : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmOtherIncomeEntry() { InitializeComponent(); this.Load += FrmOtherIncomeEntry_Load; this.btnSet.Click += btnSet_Click; this.btnSave.Click += btnSave_Click; this.btnCanle.Click += btnCanle_Click; this.txtOiae_Money.KeyPress += txtOiae_Money_KeyPress; panelEx1.BorderStyle = BorderStyle.FixedSingle; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.btnUpdateTime.Click += btnUpdateTime_Click; } protected virtual void btnUpdateTime_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void txtOiae_Money_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } protected virtual void btnCanle_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnupdate_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnSet_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmOtherIncomeEntry_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } } }