黄学彪
2019-11-25 5727cf0b9b54da0a191dd1e23cb5abf21320fbff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using Shared.Common;
namespace Shared.Phone.Device.Light
{
    public class LightControlForm : FrameLayout
    {
        //开关灯控制界面
        #region 变量
        public FrameLayout ItemView = null;
        public FrameLayout LightView = null;
        public Button CollectionBtn = null;
        public Button LightIMG = null;
        public Button LightName = null;
        public Button SwitchBtn = null;
        public Button RoomBtn = null;
        public Button RoomName = null;
        public Button MoreBtn = null;
        #endregion
        public void Show()
        {
 
        }
    }
}