Files
MomoWen 027d0f8024 初始化提交
仓库转移到Gitea,初始化提交,可能丢失以前的git版本日志
2025-11-27 16:41:05 +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