ZigbeeApp/Shared/Phone/UserView/LoginLoading.cs
New file @@ -0,0 +1,27 @@ using System; using Shared.Common; using Shared.Phone.Device.CommonForm; namespace Shared.Phone.UserView { public class LoginLoading : FrameLayout { public LoginLoading() { BackgroundColor = ZigbeeColor.Current.GXCBackgroundColor; Tag = "Login"; } /// <summary> /// show /// </summary> public void Show() { var sceneBtn = new ImageView(); sceneBtn.Width = this.Width; sceneBtn.Height = this.Height; sceneBtn.ImagePath = "Logo/2.png"; AddChidren(sceneBtn); } } }