黄学彪
2020-04-13 3793a9a38ac6c4c4111c2bba3a35a71c30601e82
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);
        }
    }
}