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_Win/FrmSettings.vb
2024-03-11 16:34:21 +08:00

15 lines
281 B
VB.net

Imports System.Windows.Forms
Public Class FrmSettings
Public Sub ShowForm(parentControl As Control)
FormBorderStyle = FormBorderStyle.None
TopLevel = False
Dock = DockStyle.Fill
Parent = parentControl
Show()
End Sub
End Class