12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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.MicroShare
- {
- public partial class FrmMicroShare : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmMicroShare()
- {
- InitializeComponent();
- this.Shown += FrmMicroShare_Shown;
- this.btnUpload.Click += btnUpload_Click;
- this.lstPic.ItemChecked += lstPic_ItemChecked;
- this.btnAll.Click += btnAll_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.toolSelected.Click += toolSelected_Click;
- this.toolCancel.Click += toolCancel_Click;
- this.btnBrowse.Click += btnBrowse_Click;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- skinPanel1.Click += skinPanel1_Click;
- }
- void skinPanel1_Click(object sender, EventArgs e)
- {
- skinPanel1.Focus();
- }
- protected virtual void btnBrowse_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void toolCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void toolSelected_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnAll_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void lstPic_ItemChecked(object sender, ItemCheckedEventArgs e)
- {
- // throw new NotImplementedException();
- }
- protected virtual void btnUpload_Click(object sender, EventArgs e)
- {
- ///throw new NotImplementedException();
- }
- protected virtual void FrmMicroShare_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
-
- }
- }
|