Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / ListItemCollection.cs / 1 / ListItemCollection.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Collection of ListItem elements // //--------------------------------------------------------------------------- namespace System.Windows.Documents { using MS.Internal; // Invariant ////// Collection of ListItem elements /// public class ListItemCollection : TextElementCollection{ //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors // This kind of collection is suposed to be created by owning List elements only. // Note that when a SiblingListItems collection is created for a ListItem, the owner of collection is that member ListItem object. // Flag isOwnerParent indicates whether owner is a parent or a member of the collection. internal ListItemCollection(DependencyObject owner, bool isOwnerParent) : base(owner, isOwnerParent) { } #endregion Constructors //-------------------------------------------------------------------- // // Public Properties // //------------------------------------------------------------------- #region Public Properties /// /// Returns a first ListItem of this collection /// public ListItem FirstListItem { get { return this.FirstChild; } } ////// Returns a last ListItem of this collection /// public ListItem LastListItem { get { return this.LastChild; } } #endregion Public Properties } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- httpstaticobjectscollection.cs
- MessageQueueInstaller.cs
- _HTTPDateParse.cs
- XmlSchemaInfo.cs
- Comparer.cs
- HtmlTableRow.cs
- AuthenticationSection.cs
- MatrixConverter.cs
- TrackingRecord.cs
- SettingsPropertyCollection.cs
- PKCS1MaskGenerationMethod.cs
- RangeBaseAutomationPeer.cs
- DependencyObject.cs
- CryptoStream.cs
- ColorKeyFrameCollection.cs
- CheckBoxRenderer.cs
- SystemBrushes.cs
- ResourceDescriptionAttribute.cs
- PolyQuadraticBezierSegment.cs
- OrElse.cs
- BridgeDataReader.cs
- WebHostScriptMappingsInstallComponent.cs
- FlatButtonAppearance.cs
- RegistrySecurity.cs
- TransformerInfo.cs
- DateTimeSerializationSection.cs
- RuntimeResourceSet.cs
- _DigestClient.cs
- TableCell.cs
- MetaTableHelper.cs
- RequestUriProcessor.cs
- OutputCacheProfileCollection.cs
- GridViewDeletedEventArgs.cs
- OLEDB_Enum.cs
- PartitionResolver.cs
- RuntimeIdentifierPropertyAttribute.cs
- CodeDomComponentSerializationService.cs
- FileIOPermission.cs
- GridViewEditEventArgs.cs
- AlternateView.cs
- Variant.cs
- EmbeddedMailObject.cs
- TransformConverter.cs
- SafeRightsManagementPubHandle.cs
- ToolStripDropDownButton.cs
- OutputScope.cs
- SelectionItemPatternIdentifiers.cs
- AtomicFile.cs
- ComplexType.cs
- UInt64Storage.cs
- ListChangedEventArgs.cs
- IChannel.cs
- ObjectCloneHelper.cs
- DbParameterCollection.cs
- DoubleAnimationUsingKeyFrames.cs
- MergeFailedEvent.cs
- CodeAttributeDeclarationCollection.cs
- GlyphingCache.cs
- ReleaseInstanceMode.cs
- WpfWebRequestHelper.cs
- TypeDelegator.cs
- NullableBoolConverter.cs
- UIElement3DAutomationPeer.cs
- MappingException.cs
- ObjectStateFormatter.cs
- BlurBitmapEffect.cs
- EmptyControlCollection.cs
- AccessedThroughPropertyAttribute.cs
- WithStatement.cs
- StoreConnection.cs
- ScriptReferenceEventArgs.cs
- MarkupCompiler.cs
- DataGridItem.cs
- ApplicationDirectoryMembershipCondition.cs
- baseaxisquery.cs
- PeerPresenceInfo.cs
- ReachVisualSerializer.cs
- LicenseException.cs
- ResourceSet.cs
- objectresult_tresulttype.cs
- FilteredXmlReader.cs
- WindowsAuthenticationEventArgs.cs
- DbConnectionClosed.cs
- InfoCardProofToken.cs
- DataGridColumnHeader.cs
- CodeMemberField.cs
- ProjectionAnalyzer.cs
- ZipIOLocalFileHeader.cs
- IEnumerable.cs
- Section.cs
- AppearanceEditorPart.cs
- FunctionDescription.cs
- UpdatableGenericsFeature.cs
- XamlWriter.cs
- BitmapEffectOutputConnector.cs
- Exception.cs
- ResourcesBuildProvider.cs
- XmlSchemaImporter.cs
- PassportAuthentication.cs
- CurrencyManager.cs