lss
2020-05-29 cc1012b077a91793c0edd6001cdf019e6bd9a57d
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
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);
        }
    }
}