本文介绍了SetFocus在动态创建的控件上.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用C#.net Windows应用程序将重点放在动态创建的控件上

How to set focus on dynamically created controls using C#.net windows application

txtsrno = new TextBox();
            txtsrno.Name = "a1" + nn.ToString();
            txtsrno.Location = new Point(6, y);
            txtsrno.Size = new Size(59, 20);
            txtsrno.Text = sno.ToString();
            txtsrno.TabIndex = txt_amount.TabIndex + 1; // this is not working. 
            panel1.Controls.Add(txtsrno);

推荐答案

txtsrno.Focus();



应该有帮助!

干杯!



Should help!

Cheers!



这篇关于SetFocus在动态创建的控件上.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 11:02