.net - how to set default focus on C# Winform ToolStripMenuItem when Form Shown? -


i want set default focus on c# winform toolstripmenuitem when form shown. possible or not? if so, how do it?

in shown event of form, set focus containing toolstrip using focus(), use select() select specific tool strip item:

    private void form1_shown(object sender, eventargs e)     {         this.toolstrip1.focus();         this.toolstripmenuitem1.select();     } 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -