Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
135
UltraTextEditor containing droppeddown ultragrid
posted

Hi,

I have an ultratexteditor which contains a right button displaying a dropdown ultragrid. I would ask you how can I get the parent control(my ultratexteditor in this case) of my ultragrid when i raise an event it :

 private void myUltraGrid_checkRow(object sender, EventArgs e)
{
UltraGrid MyGrid = sender as UltraGrid;
//Some code to get my ultraTextEditor's value

}

 

Reciprocally, how can I access to my ultragrid when i raise an evet on my ultratextEditor? It must be a way I missed in trying to do this?

 

Thanks in advance