首页 > 代码库 > unity简单登录界面

unity简单登录界面

public class LogonSystem:MonoBehavirour{        public UIInput UIInputUserName;//用户名称    public UIInput UIIputPW;//密码    public UILabel UILabel_Tips;//提示信息    void OnClick()    {        string strUserName=null;        string strPW=null;        strUserName=UIInputUserName.value;        strPW=UIInputPW.value;        if(strUserName!=null&&strPw!=null)        {            if(strUserName.Equals("Admin")&&strPW.Equals("123"))            {                UILabel_Tips.text="登陆成功";            }            else            {                    UILabel_Tips.text="用户名或密码错误";            }        }        else        {            UILable_Tips.text=|"请输入用户名和密码!"        }            }}|

 

unity简单登录界面