123456789101112131415161718192021222324 |
- 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.MainBusiness.FinancialManagement.SetSmallForm
- {
- public partial class PhotoZoomSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.PhotoZoomSetSmallForm
- {
- public PhotoZoomSetSmallForm()
- {
- this.Shown += PhotoZoomSetSmallForm_Shown;
- }
- public Image PhotoImage;
- void PhotoZoomSetSmallForm_Shown(object sender, EventArgs e)
- {
- this.PictPhoto.Image = this.PhotoImage;
- }
- }
- }
|