I want to dispose all resources (binded events, variables, objects, data structures, data bindings, etc.) of my form on form close. Currently I,m disposing my resources explicitly one by one on one of my form just to test this operation. But my application is big and there are many forms in it and if i started disposing all resources explicitly on every form, it will take time. So my question is that is there a general method or technique? so that all my resources gets disposed rather then doing it explicitly one by one.
Thanks.