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
| using System;
| using System.Collections.Generic;
| using System.Text;
| using ZigBee.Device;
|
| namespace Shared.Phone.Category.Controls
| {
| /// <summary>
| /// 分类界面的传感器设备行控件
| /// </summary>
| public class DeviceSensorRowControl : DeviceRowCommon
| {
| #region ■ 初始化_____________________________
|
| /// <summary>
| /// 分类界面的传感器设备行控件
| /// </summary>
| /// <param name="i_ChidrenYaxis">子控件Y轴偏移量(真实值,有些界面需要这种特殊操作)</param>
| public DeviceSensorRowControl(int i_ChidrenYaxis = 0) : base(i_ChidrenYaxis)
| {
| }
|
| #endregion
| }
| }
|
|