| | |
| | | /// <summary>
|
| | | /// 功能的桌布控件
|
| | | /// </summary>
|
| | | private FrameLayout DeviceBodyTableControl = null;
|
| | | private NormalFrameLayout DeviceBodyTableControl = null;
|
| | | /// <summary>
|
| | | /// 场景的列表控件
|
| | | /// </summary>
|
| | |
| | | /// <summary>
|
| | | /// 场景的桌布控件
|
| | | /// </summary>
|
| | | private FrameLayout SceneBodyTableControl = null;
|
| | | private NormalFrameLayout SceneBodyTableControl = null;
|
| | | /// <summary>
|
| | | /// 全选控件
|
| | | /// </summary>
|
| | |
| | | bodyFrameLayout.AddChidren(tabControl);
|
| | |
|
| | | //初始化场景桌布
|
| | | this.SceneBodyTableControl = new FrameLayout(); |
| | | this.SceneBodyTableControl = new NormalFrameLayout(); |
| | | SceneBodyTableControl.Y = tabControl.Bottom; |
| | | SceneBodyTableControl.Height = bodyFrameLayout.Height - tabControl.Bottom; |
| | | bodyFrameLayout.AddChidren(SceneBodyTableControl);
|
| | | //初始化设备桌布
|
| | | this.DeviceBodyTableControl = new FrameLayout(); |
| | | this.DeviceBodyTableControl = new NormalFrameLayout(); |
| | | DeviceBodyTableControl.Y = tabControl.Bottom; |
| | | DeviceBodyTableControl.Height = bodyFrameLayout.Height - tabControl.Bottom; |
| | | bodyFrameLayout.AddChidren(DeviceBodyTableControl); |