First issue might be that you have to call the function. You have only defined it, without running it. So add the line at the bottom of your code:
form.build_controls()
Another issue might be that this line may have a casing issue:
self.form_main = tk.TK()
may have to be (note Tk()):
self.form_main = tk.Tk()
Does this help you out?