少校
UID2022780
U币3
G币6270
技术0
主题15
精华0
阅读权限90
注册时间2012-9-2
最后登录2024-4-27
在线时间814 小时
居住地江苏省 苏州市 吴中区 胥口镇
QQ
出生地江苏省
学历其它
少校
|
- Imports Snap, Snap.Create, Snap.UI.Input
- Public Class MyProgram
- Public Shared Sub Main()
- Dim cue As String = "Please enter an integer in the dialog"
- Dim title As String = "Integer Entry"
- Dim label As String = "Enter it here"
- Dim initialValue As Integer = 1
- Dim intValue As Integer = GetInteger(cue, title, label, initialValue)
- InfoWindow.WriteLine("Integer value entered = " & intValue)
- End Sub
- End Class
复制代码
|
|