I'm using Ext.net Desktop and want to get all button controls that are inside each of this Modules. hence I use this method to get all button controls :
ControlUtils.FindControls<Button>(this);
which this is a pointer to module it self. but this function return result with zero button inside it. I wrote another method that traverse inside control and search inside "control.NamingContainer". this method find all button control inside all modules that I have and not the specified Module that I want.
Is there any method that I can get all button controls inside a module itself?
thank you very much