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);
|
}
|
}
|
}
|