PhotoZoomSetSmallForm.cs 683 B

123456789101112131415161718192021222324
  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.MainBusiness.FinancialManagement.SetSmallForm
  10. {
  11. public partial class PhotoZoomSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.PhotoZoomSetSmallForm
  12. {
  13. public PhotoZoomSetSmallForm()
  14. {
  15. this.Shown += PhotoZoomSetSmallForm_Shown;
  16. }
  17. public Image PhotoImage;
  18. void PhotoZoomSetSmallForm_Shown(object sender, EventArgs e)
  19. {
  20. this.PictPhoto.Image = this.PhotoImage;
  21. }
  22. }
  23. }