Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / ListViewDataItem.cs / 1 / ListViewDataItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics.CodeAnalysis; using System.Web; using System.Web.UI; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewDataItem : ListViewItem, IDataItemContainer { private int _dataItemIndex; private int _displayIndex; private object _dataItem; public ListViewDataItem(int dataItemIndex, int displayIndex) : base(ListViewItemType.DataItem) { _dataItemIndex = dataItemIndex; _displayIndex = displayIndex; } public virtual object DataItem { get { return _dataItem; } set { _dataItem = value; } } public virtual int DataItemIndex { get { return _dataItemIndex; } } public virtual int DisplayIndex { get { return _displayIndex; } } [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "1#")] protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { ListViewCommandEventArgs args = new ListViewCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics.CodeAnalysis; using System.Web; using System.Web.UI; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewDataItem : ListViewItem, IDataItemContainer { private int _dataItemIndex; private int _displayIndex; private object _dataItem; public ListViewDataItem(int dataItemIndex, int displayIndex) : base(ListViewItemType.DataItem) { _dataItemIndex = dataItemIndex; _displayIndex = displayIndex; } public virtual object DataItem { get { return _dataItem; } set { _dataItem = value; } } public virtual int DataItemIndex { get { return _dataItemIndex; } } public virtual int DisplayIndex { get { return _displayIndex; } } [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "1#")] protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { ListViewCommandEventArgs args = new ListViewCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Focus.cs
- ToolStripPanelRenderEventArgs.cs
- ListManagerBindingsCollection.cs
- DocumentViewerHelper.cs
- PcmConverter.cs
- VerificationException.cs
- InstanceDataCollectionCollection.cs
- LiteralControl.cs
- RequiredAttributeAttribute.cs
- CalendarSelectionChangedEventArgs.cs
- ModelTreeEnumerator.cs
- UnwrappedTypesXmlSerializerManager.cs
- ToolStripDropDown.cs
- ServiceModelSectionGroup.cs
- EntityDataSourceState.cs
- XPathDocumentIterator.cs
- XsdValidatingReader.cs
- SqlXmlStorage.cs
- ClientBuildManagerCallback.cs
- SigningCredentials.cs
- _TimerThread.cs
- DATA_BLOB.cs
- TypeBuilder.cs
- ProcessManager.cs
- SignatureHelper.cs
- GeometryDrawing.cs
- FaultDescription.cs
- DesignerOptionService.cs
- LinkArea.cs
- PieceNameHelper.cs
- FormViewPagerRow.cs
- BindValidator.cs
- UnsafeNativeMethods.cs
- ObjectHelper.cs
- MetadataFile.cs
- ConstraintEnumerator.cs
- CompositeControl.cs
- GenericWebPart.cs
- SrgsOneOf.cs
- WebResourceAttribute.cs
- SoapObjectWriter.cs
- Calendar.cs
- BevelBitmapEffect.cs
- ConsumerConnectionPoint.cs
- OperationInvokerTrace.cs
- DecimalAnimationUsingKeyFrames.cs
- ScrollBarRenderer.cs
- XPathNavigatorReader.cs
- CapabilitiesUse.cs
- UnSafeCharBuffer.cs
- BeginEvent.cs
- DBAsyncResult.cs
- VisualBasicReference.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- MimeMultiPart.cs
- ReflectionUtil.cs
- Triplet.cs
- ReversePositionQuery.cs
- HelpInfo.cs
- OrderedDictionary.cs
- CollectionViewSource.cs
- ObjectCache.cs
- QilGeneratorEnv.cs
- Compress.cs
- ValidationError.cs
- XmlValueConverter.cs
- ListenerElementsCollection.cs
- ImportedNamespaceContextItem.cs
- ManagementPath.cs
- WinEventTracker.cs
- ReadOnlyDataSource.cs
- DrawingGroup.cs
- Graph.cs
- BuildProvider.cs
- HtmlWindow.cs
- ScrollPatternIdentifiers.cs
- MediaCommands.cs
- JournalNavigationScope.cs
- StorageTypeMapping.cs
- EntityDataSourceContextCreatedEventArgs.cs
- SizeChangedEventArgs.cs
- SerializationUtilities.cs
- _NestedMultipleAsyncResult.cs
- PointHitTestParameters.cs
- safemediahandle.cs
- _LazyAsyncResult.cs
- BaseInfoTable.cs
- DelayedRegex.cs
- WaitHandle.cs
- CheckPair.cs
- SQLSingle.cs
- login.cs
- ImageAnimator.cs
- BitmapSizeOptions.cs
- ModelPerspective.cs
- AnimationClockResource.cs
- ConvertBinder.cs
- WebSysDefaultValueAttribute.cs
- RotateTransform.cs
- KnownTypesProvider.cs