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"; } /// /// show /// public void Show() { var sceneBtn = new ImageView() { Width=Application.GetMinRealAverage(1080), Height=Application.GetMinRealAverage(1920), ImagePath="Logo/2.jpg" }; AddChidren(sceneBtn); } } }