| | |
| | | //最大显示5个
|
| | | int rowCount = this.RowCount > 5 ? 5 : this.RowCount;
|
| | | //桌布
|
| | | var frameTable = new FrameLayoutControl(false);
|
| | | var frameTable = new FrameLayout();
|
| | | frameTable.X = Application.GetRealWidth(662 - (RowWidth - 395));
|
| | | frameTable.Y = Application.GetRealHeight(158 + 15 + 1);
|
| | | frameTable.Width = Application.GetRealWidth(RowWidth);
|
| | | frameTable.Height = Application.GetRealHeight(RowHeight * rowCount);
|
| | | frameTable.BackgroundColor = UserCenterColor.Current.White;
|
| | | frameTable.BorderColor = UserCenterColor.Current.Transparent;
|
| | | frameTable.RadiusEx = 6;
|
| | | frameTable.Radius = 6;
|
| | | this.AddChidren(frameTable);
|
| | |
|
| | | if (titleText != null)
|