本文介绍了如何获得目前集中文本框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怎样才能获得 TextBox的ID 这是目前的重点?如果没有专注,就应该返回空值



请注意:这应该只检查文本框


解决方案
文本框focusedTxt = Controls.OfType<文本框方式>()FirstOrDefault(X => x.Focused);


How can I get the ID of the TextBox which is currently focused? If none is focused, it should return a null value.

Note: It should only check text boxes.

解决方案
TextBox focusedTxt = Controls.OfType<TextBox>().FirstOrDefault(x => x.Focused);

这篇关于如何获得目前集中文本框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 17:16