返回介绍

GUI.FocusControl 焦点控件

发布于 2019-12-18 15:37:45 字数 2386 浏览 1128 评论 0 收藏 0

JavaScript => public static function FocusControl(name: string): void;
C# => public static void FocusControl(string name);

Parameters 参数

nameName set using SetNextControlName.
使用SetNextControlName设置名称。

Description 描述

Move keyboard focus to a named control.

移动键盘焦点到被命名的控件。

For focusing text in Editor GUI text fields, see EditorGUI.FocusTextInControl.

对于GUI文本区域编辑器中的焦点文本,请参考EditorGUI.FocusTextInControl。

JavaScript:

	// When pressed the button, selects the "username" Textfield.
	var username : String = "username";
	var pwd : String = "a pwd";
	function OnGUI () {
		// Set the internal name of the textfield
		GUI.SetNextControlName ("MyTextField");
 
		// Make the actual text field.
		username = GUI.TextField (Rect (10,10,100,20), username);
		pwd = GUI.TextField (Rect (10,40,100,20), pwd);
 
		// If the user presses this button, keyboard focus will move.
		if (GUI.Button (Rect (10,70,80,20), "Move Focus"))
			GUI.FocusControl ("MyTextField");	
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public string username = "username";
    public string pwd = "a pwd";
    void OnGUI() {
        GUI.SetNextControlName("MyTextField");
        username = GUI.TextField(new Rect(10, 10, 100, 20), username);
        pwd = GUI.TextField(new Rect(10, 40, 100, 20), pwd);
        if (GUI.Button(new Rect(10, 70, 80, 20), "Move Focus"))
            GUI.FocusControl("MyTextField");
 
    }
}

gui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文