I am trying to add a form to a namespace "FormsWeLove" and the only way I found was to add a namespace tag to the form1.vb file and also to the form1.Designer.vb including everything in that file. For the form1.vb:
Namespace FormsWeLove
Public Class Form1
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
Me.Close()
End Sub
End Class
End Namespace
For the form1.Designer.vb:
Namespace FormsWeLove
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>_
'rest of the code
End Class
End Namespace
Would that be the only way to do this? Some posts mentioned that adding the file to a specific folder is supposed to add it to a namespace but it doesn't seem to do the trick here (unless there is no code changed and it doesn't show it in the .vb files but it actually adds them to a namespace at runtime?)