I'm new to IronPython, currently using ironpython studio, usually I like to program with Visual Basic or Delphi. My problem is that I don't know how to switch between forms by clicking a button, on Delphi you normaly write this code from a button on "form1":
procedure TMain.buttonClick(Sender: TObject);
begin
form2.show;
end;
in VB you usually write almost the same thing, I'd like to know how to do this in Ironpython studio, I'd be grateful if somebody could help me, thanks!