gxc
2020-02-28 66a9965c44ecc32a6696abca876ab9d1cd091584
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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()
            {
                Width=Application.GetMinRealAverage(1080),
                Height=Application.GetMinRealAverage(1920),
                ImagePath="Logo/2.jpg"
            };
            AddChidren(sceneBtn);
        }
    }
}