This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_Repair/FrmImage.vb
2024-03-11 16:34:21 +08:00

13 lines
419 B
VB.net

Public Class FrmImage
Public Shadows Function ShowImage(img As Image) As DialogResult
Using frm As New FrmImage
frm.PictureBox1.Image = img
Return frm.ShowDialog()
End Using
End Function
Private Sub FrmImage_Load(sender As Object, e As EventArgs) Handles Me.Load
PictureBox1.SizeMode = PictureBoxSizeMode.Zoom
Text = $"Image"
End Sub
End Class