|
{
get
{
return (StringItem)base.List[index];
}
set
{
List[index] = value;
}
}
public void Add(StringItem aItem)
{
base.List.Add(aItem);
}
public void Remove(int index)
{
if(index < base.Count - 1 && index > 0 )
{
base.List.RemoveAt(index);
}
}
#region IStateManager 成员
void IStateManager.TrackViewState()
{
for(int i = 0 ; i < base.List.Count; i ++)
{
((IStateManager)base.List[i]).TrackViewState();
}
}
bool IStateManager.IsTrackingViewState
{
get
{
return marked;
}
}
object IStateManager.SaveViewState()
{
object[] iState = new object[base.List.Count];
for(int i = 0 ; i < base.List.Count; i ++)
{
iState[i] = ((IStateManager)base.List[i]).SaveViewState();
}
return iState;
}
void IStateManager.LoadViewState(object state)
上一页 [1] [2] [3] [4] [5] [6] [7] [8] 下一页 |