JLChen
2020-12-03 11c4199c6015914b5de6d96fca3b478c0a852f9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using Shared;
using HDL_ON.UI.CSS;
namespace HDL_ON.UI
{
    public class AutomationMenuPage : FrameLayout
    {
        FrameLayout bodyView;
        public AutomationMenuPage()
        {
            bodyView = this;
        }
 
        public void LoadPage()
        {
            //new TopViewDiv(bodyView, Language.StringByID(StringId.Automation)).LoadTopView();
 
 
        }
    }
}