tabcontrol - call of the method in mainwindow gives different result when it is called from usercontrol c# -


in mainwindow try navigate through tabcontrol method

public void izaberidijagnostiku() {         this.tabcontrol1.selecteditem = tabitem3;         this.tabitem3.focus(); } 

and works.

but, when call method user control navigation doesn't work. how can navigate through tabs?


Comments

Popular posts from this blog

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -

Python __call__ special method practical example -