我想获取Form2中文本框提供的信息,以便在窗体1中的图片框中绘制圆/矩形/椭圆/扇形。
这些是该程序的要求
我尝试使用 昏暗的主体作为新Form1
Form1.Show()
但是当单击按钮时什么也没发生
公共共享长度 公开共享RWid 公开共享填充
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If TextBox1.Text < -1 Or TextBox2.Text < -1 Then
MsgBox("Length or Width not valid." + "Please Try Again.")
End If
Dim Rlength As Integer
Rlength = TextBox1.Text
Dim RWid As Integer
RWid = TextBox2.Text
Dim Main As New Form1
Form1.Show()
End Sub
当单击按钮时,没有任何反应。