1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class QQListOptions : BaseControlOptions
- {
- public QQListOptions()
- {
- ItemList = new List<ListControlItem>();
- ColumnCount = 1;
- }
- public int ColumnCount { get; set; }
- public int? Width { get; set; }
- public int? ItemWidth { get; set; }
- public int? ItemHeight { get; set; }
- public List<ListControlItem> ItemList
- {
- get;
- set;
- }
- public string ItemSourceUrl { get; set; }
- public string TextField
- {
- get;
- set;
- }
- public string ValueField
- {
- get;
- set;
- }
- public string OnClick
- {
- get;
- set;
- }
- public string OnLoadSuccess
- {
- get;
- set;
- }
- }
- }
|