1

I write programs in Windows casually (apps like notepad, web-browser etc.). But I don't see a good alternative available. I have used Mono but it is not one bit like Visual Studio. I am having a tough time to figure out stuff. The apps that I write look something like this:

Private Sub Form_Load()
WebBrowser1.Navigate ("http://google.com")
End Sub

and the have a blank forum and I add stuff like combo-box, buttons etc. Then I right-click those and write the code for it (see above bold). I found nothing like that in in Mono. Perhaps I am mistaken or confused.

  • 1
    are you looking for an IDE? If yes Visual Studio Code is available for linux. – Ron Jun 01 '15 at 05:44
  • No, I understand, he's looking for a GUI designer tool. – David Foerster Jun 01 '15 at 05:48
  • do u want a good editor ? if yes then vi editor is there in ubuntu as in any linux. You can search for vi tuorial in google and you will find good help. vi editor is a tough editor to learn but you can do things more easily once you learn. I am also learning it so ... – sps Jun 01 '15 at 06:42

1 Answers1

2

Are you looking for an IDE for a specific language? Or an "all-in-one" IDE? Check out Anjuta and QT Creator. Also see this list of alternatives to Visual Studio for Linux

EDIT: QT Creator has a good GUI designer called...take a guess...QT Designer. Is that what you're looking for?

Synergist
  • 315