\'网格控件布局
Public Sub UserControl1_ItemClicked(sender As Object, e As Navigation.UserControl.Item)
If e.Name <> "关闭" Then
Dim gg As WinForm.ComboBox = Forms(Vars("引用符号的窗口名")).Controls(Vars("引用符号的控件名")) ‘这里能不能直接传个窗口控件进去
gg.Value = gg.Value + e.Name
End If
sender.FindForm().Close()
Vars("引用符号的窗口名") = Nothing
Vars("引用符号的控件名") = Nothing
End Sub