Frage im Vorstellungsgespräch bei Weta Digital

How do you start a form?

Antworten zu Vorstellungsgespräch

Anonym

1. Sept. 2015

(What?! It's always automatically generated by Qt, the use Qt for interface) I just told a story of creating customisable form as a sensible answer.

1

Anonym

17. Nov. 2015

It's good for every developer to at least learn to create basic elements natively and without the help of a 3rd party framework holding their hand. In WinForms, you can create a new form by deriving a new Class (say MyAwesomeForm) from the Form class. Then to make it the main form of the application and launch it, in static void Main() -- "Program.cs" -- launch it by using the Application.Run(new(YOUR_FORM_HERE)); In HTML, it's basically the tag. At least they didn't ask you to code up the basic WIN32 windows from scratch.