FrmViewPhoto.cs 574 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.InventoryManagement
  10. {
  11. public partial class FrmViewPhoto : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public FrmViewPhoto()
  14. {
  15. InitializeComponent();
  16. this.Shown+=FrmViewPhoto_Shown;
  17. }
  18. protected virtual void FrmViewPhoto_Shown(object sender, EventArgs e)
  19. {
  20. }
  21. }
  22. }