You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,101 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="RepeaterItem.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.Design;
|
||||
using System.Web.UI;
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Encapsulates an item within the <see cref='System.Web.UI.WebControls.Repeater'/> control.</para>
|
||||
/// </devdoc>
|
||||
[
|
||||
ToolboxItem(false)
|
||||
]
|
||||
public class RepeaterItem : Control, IDataItemContainer {
|
||||
|
||||
private int itemIndex;
|
||||
private ListItemType itemType;
|
||||
private object dataItem;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.RepeaterItem'/> with the specified item type and
|
||||
/// location.</para>
|
||||
/// </devdoc>
|
||||
public RepeaterItem(int itemIndex, ListItemType itemType) {
|
||||
this.itemIndex = itemIndex;
|
||||
this.itemType = itemType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// Specifies the data item.
|
||||
/// </devdoc>
|
||||
public virtual object DataItem {
|
||||
get {
|
||||
return dataItem;
|
||||
}
|
||||
set {
|
||||
dataItem = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Indicates the ordinal index that specifies the item
|
||||
/// location within the <see cref='System.Web.UI.WebControls.Repeater'/>
|
||||
/// .</para>
|
||||
/// </devdoc>
|
||||
public virtual int ItemIndex {
|
||||
get {
|
||||
return itemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// Indicates the <see cref='System.Web.UI.WebControls.Repeater'/> item type. This property is
|
||||
/// read-only.
|
||||
/// </devdoc>
|
||||
public virtual ListItemType ItemType {
|
||||
get {
|
||||
return itemType;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <internalonly/>
|
||||
/// <devdoc>
|
||||
/// </devdoc>
|
||||
protected override bool OnBubbleEvent(object source, EventArgs e) {
|
||||
if (e is CommandEventArgs) {
|
||||
RepeaterCommandEventArgs args = new RepeaterCommandEventArgs(this, source, (CommandEventArgs)e);
|
||||
|
||||
RaiseBubbleEvent(this, args);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
int IDataItemContainer.DataItemIndex {
|
||||
get {
|
||||
return ItemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
int IDataItemContainer.DisplayIndex {
|
||||
get {
|
||||
return ItemIndex;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user