| | |
| | | var rowSerial = new FrameRowControl(listView.rowSpace / 2);
|
| | | rowSerial.UseClickStatu = false; |
| | | listView.AddChidren(rowSerial); |
| | | rowSerial.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.uSerialNumber), 400); |
| | | rowSerial.AddMostRightView(listDevice[0].SerialNumber != string.Empty ? listDevice[0].SerialNumber : listDevice[0].DeviceAddr, 600); |
| | | rowSerial.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.uSerialNumber), 400);
|
| | | if (Common.LocalDevice.Current.IsHdlDevice(listDevice[0]) == false)
|
| | | {
|
| | | //第三方设备固定使用Mac
|
| | | rowSerial.AddMostRightView(listDevice[0].DeviceAddr, 600);
|
| | | } |
| | | else
|
| | | {
|
| | | rowSerial.AddMostRightView(listDevice[0].SerialNumber != string.Empty ? listDevice[0].SerialNumber : listDevice[0].DeviceAddr, 600);
|
| | | } |
| | | rowSerial.AddBottomLine();
|
| | |
|
| | | //MAC
|