| | |
| | | rowName.AddBottomLine();
|
| | |
|
| | | //设备型号
|
| | | string strModel = listDevice[0].DriveCode > 0 ? Language.StringByID(R.MyInternationalizationString.uVirtualDriveDevice) : listDevice[0].ModelIdentifier;
|
| | | var rowType = new FrameRowControl(listView.rowSpace / 2);
|
| | | rowType.UseClickStatu = false; |
| | | listView.AddChidren(rowType); |
| | | rowType.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.uModelIdentifier), 300); |
| | | rowType.AddMostRightView(listDevice[0].ModelIdentifier, 600); |
| | | rowType.AddMostRightView(strModel, 600); |
| | | rowType.AddBottomLine(); |
| | | |
| | | //固件版本
|
| | |
| | | rowMac.AddBottomLine(); |
| | | |
| | | //制造商
|
| | | string strProtuct = listDevice[0].DriveCode > 0 ? "HDL" : listDevice[0].ManufacturerName;
|
| | | var rowProtuct = new FrameRowControl(listView.rowSpace / 2);
|
| | | rowProtuct.UseClickStatu = false; |
| | | listView.AddChidren(rowProtuct); |
| | | rowProtuct.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.uManufacturerName), 300); |
| | | rowProtuct.AddMostRightView(listDevice[0].ManufacturerName, 600); |
| | | rowProtuct.AddMostRightView(strProtuct, 600); |
| | | |
| | | listView.AdjustRealHeight(Application.GetRealHeight(23)); |
| | | }
|