From 9d49827f83ad39ef2f4fccc5eaa913a1e1b9621d Mon Sep 17 00:00:00 2001 From: dathlin Date: Sun, 5 Nov 2017 13:54:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A6=E6=88=B7=E6=96=B0=E5=A2=9E=E7=94=B5?= =?UTF-8?q?=E8=AF=9D=E5=8F=B7=E7=A0=81=E5=92=8C=E7=94=B5=E5=AD=90=E9=82=AE?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C=E5=AE=89=E5=8D=93=E7=AB=AF=E8=BD=BD=E5=85=A5?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=A2=9E=E5=8A=A0=E4=B8=80=E4=B8=AA=E5=AE=89?= =?UTF-8?q?=E5=8D=93LOGO=E6=98=BE=E7=A4=BA=E3=80=82v1.7.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/res/layout/activity_splash.xml | 10 ++-- .../FormRegisterAccount.Designer.cs | 56 +++++++++++++++++-- .../AccountSupport/FormRegisterAccount.cs | 5 ++ CommonLibrary/AccountSupport/UserAccount.cs | 10 +++- CommonLibrary/UserSystem.cs | 2 +- 5 files changed, 71 insertions(+), 12 deletions(-) diff --git a/AndroidTemplate/app/src/main/res/layout/activity_splash.xml b/AndroidTemplate/app/src/main/res/layout/activity_splash.xml index 2e5d9c7..78c3694 100644 --- a/AndroidTemplate/app/src/main/res/layout/activity_splash.xml +++ b/AndroidTemplate/app/src/main/res/layout/activity_splash.xml @@ -9,14 +9,15 @@ tools:context="com.example.UserSoftwareAndroidTemplate.LoginSupport.SplashActivity"> - + android:textSize="11sp" /> public int Grade { get; set; } = 0; /// + /// 用户的手机号 + /// + public string Phone { get; set; } + /// + /// 用户的电子邮件 + /// + public string EMail { get; set; } + /// /// 该用户的注册日期,一旦注册,应该固定 /// public DateTime RegisterTime { get; set; } = DateTime.Now; @@ -63,7 +71,7 @@ namespace CommonLibrary /// public int LoginFailedCount { get; set; } = 0; /// - /// 上次登录系统的方式,有winform版,wpf版,web版 + /// 上次登录系统的方式,有winform版,wpf版,web版,Android版 /// public string LastLoginWay { get; set; } = string.Empty; /// diff --git a/CommonLibrary/UserSystem.cs b/CommonLibrary/UserSystem.cs index f8c1b08..1764e4e 100644 --- a/CommonLibrary/UserSystem.cs +++ b/CommonLibrary/UserSystem.cs @@ -44,7 +44,7 @@ namespace CommonLibrary **************************************************************************/ - SoftBasic.FrameworkVersion = new SystemVersion("1.7.4"); + SoftBasic.FrameworkVersion = new SystemVersion("1.7.5"); }