xm
2020-05-07 c1de48884fa145a16a0f8bcee93274dcfaa0ff82
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);
        }
    }
}