0

我正在尝试将焦点设置在 TextBox 上,但 Focus() 方法返回 false

this.NameTextBox.Focus(FocusState.Programmatic);

但是在msdn中是这样写的:

焦点(焦点状态值)

返回值:如果焦点设置在控件上,或者焦点已经在控件上,则返回 true。如果控件不可聚焦,则为 False。

您通常将 FocusState.Programmatic 作为参数传递,以指示控件通过有意调用 Focus 方法获得焦点。例如,如果单击“编辑”按钮导致将焦点设置在TextBox上,请使用 Programmatic 焦点状态。

那么为什么我的命令不起作用?

4

0 回答 0