wxr
2024-04-11 9802cf8c8ad9f392c5c5342a352a17efeef55fc9
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
using System;
using HDL_ON.Entity;
using Shared;
 
namespace HDL_ON.UI
{
    /// <summary>
    /// 支持的第三方平台设备列表界面
    /// </summary>
    public class Iot_SupportSpkListPage : FrameLayout
    {
        private FrameLayout bodyView;
 
        IntegratedBrand_Iot brand_Iot;
 
        public Iot_SupportSpkListPage()
        {
            bodyView = this;
        }
 
        public void LoadPage()
        {
 
        }
    }
}