Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / HierarchicalDataTemplate.cs / 1305600 / HierarchicalDataTemplate.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: HierarchicalDataTemplate adds hierarchy support to DataTemplate. // // Specs: http://avalon/coreui/Specs%20%20Property%20Engine/Styling%20Revisited.doc // //--------------------------------------------------------------------------- using System.Windows.Controls; using System.Windows.Data; namespace System.Windows { ////// HierarchicalDataTemplate adds hierarchy support to DataTemplate. /// public class HierarchicalDataTemplate : DataTemplate { #region Constructors //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- ////// HierarchicalDataTemplate Constructor /// public HierarchicalDataTemplate() { } ////// HierarchicalDataTemplate Constructor /// public HierarchicalDataTemplate(object dataType) : base(dataType) { } #endregion Constructors #region Public Properties //-------------------------------------------------------------------- // // Public Properties // //------------------------------------------------------------------- ////// ItemsSource binding for this DataTemplate. This is applied /// to the ItemsSource property on a generated HeaderedItemsControl, /// to indicate where to find the collection that represents the /// next level in the data hierarchy. /// public BindingBase ItemsSource { get { return _itemsSourceBinding; } set { CheckSealed(); _itemsSourceBinding = value; } } ////// ItemTemplate for this DataTemplate. This is applied /// to the ItemTemplate property on a generated HeaderedItemsControl, /// to indicate how to display items from the next level in the /// data hierarchy. /// public DataTemplate ItemTemplate { get { return _itemTemplate; } set { CheckSealed(); _itemTemplate = value; _itemTemplateSet = true; } } ////// ItemTemplateSelector for this DataTemplate. This is applied /// to the ItemTemplateSelector property on a generated HeaderedItemsControl, /// to indicate how to select a template to display items from the /// next level in the data hierarchy. /// public DataTemplateSelector ItemTemplateSelector { get { return _itemTemplateSelector; } set { CheckSealed(); _itemTemplateSelector = value; _itemTemplateSelectorSet = true; } } ////// ItemContainerStyle for this DataTemplate. This is applied /// to the ItemContainerStyle property on a generated HeaderedItemsControl, /// to indicate a style for the containers it generates. /// public Style ItemContainerStyle { get { return _itemContainerStyle; } set { CheckSealed(); _itemContainerStyle = value; _itemContainerStyleSet = true; } } ////// ItemContainerStyleSelector for this DataTemplate. This is applied /// to the ItemContainerStyleSelector property on a generated HeaderedItemsControl, /// to indicate how to select a style for the containers it generates. /// public StyleSelector ItemContainerStyleSelector { get { return _itemContainerStyleSelector; } set { CheckSealed(); _itemContainerStyleSelector = value; _itemContainerStyleSelectorSet = true; } } ////// ItemStringFormat for this DataTemplate. This is applied /// to the ItemStringFormat property on a generated HeaderedItemsControl, /// to indicate how to format items from the /// next level in the data hierarchy. /// public string ItemStringFormat { get { return _itemStringFormat; } set { CheckSealed(); _itemStringFormat = value; _itemStringFormatSet = true; } } ////// AlternationCount for this DataTemplate. This is applied /// to the AlternationCount property on a generated HeaderedItemsControl, /// to control the setting of AlternationIndex at the /// next level in the data hierarchy. /// public int AlternationCount { get { return _alternationCount; } set { CheckSealed(); _alternationCount = value; _alternationCountSet = true; } } ////// ItemBindingGroup for this DataTemplate. This is applied /// to the ItemBindingGroup property on a generated HeaderedItemsControl, /// to define the binding group used at the /// next level in the data hierarchy. /// public BindingGroup ItemBindingGroup { get { return _itemBindingGroup; } set { CheckSealed(); _itemBindingGroup = value; _itemBindingGroupSet = true; } } #endregion Public Properties #region Internal Properties //-------------------------------------------------------------------- // // Internal Properties // //-------------------------------------------------------------------- internal bool IsItemTemplateSet { get { return _itemTemplateSet; } } internal bool IsItemTemplateSelectorSet { get { return _itemTemplateSelectorSet; } } internal bool IsItemContainerStyleSet { get { return _itemContainerStyleSet; } } internal bool IsItemContainerStyleSelectorSet { get { return _itemContainerStyleSelectorSet; } } internal bool IsItemStringFormatSet { get { return _itemStringFormatSet; } } internal bool IsAlternationCountSet { get { return _alternationCountSet; } } internal bool IsItemBindingGroupSet { get { return _itemBindingGroupSet; } } #endregion Internal Properties #region Data private BindingBase _itemsSourceBinding; private DataTemplate _itemTemplate; private DataTemplateSelector _itemTemplateSelector; private Style _itemContainerStyle; private StyleSelector _itemContainerStyleSelector; private string _itemStringFormat; private int _alternationCount; private BindingGroup _itemBindingGroup; private bool _itemTemplateSet; private bool _itemTemplateSelectorSet; private bool _itemContainerStyleSet; private bool _itemContainerStyleSelectorSet; private bool _itemStringFormatSet; private bool _alternationCountSet; private bool _itemBindingGroupSet; #endregion Data } } // 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
- HostVisual.cs
- PageBuildProvider.cs
- HtmlTable.cs
- Vector3DValueSerializer.cs
- TypefaceMetricsCache.cs
- UndoUnit.cs
- FileSystemWatcher.cs
- AstNode.cs
- CallbackHandler.cs
- Pointer.cs
- ECDsa.cs
- ZipIORawDataFileBlock.cs
- EnlistmentTraceIdentifier.cs
- ComponentDispatcher.cs
- ProfileSettings.cs
- PolicyManager.cs
- XmlQueryOutput.cs
- DoubleSumAggregationOperator.cs
- BindingEntityInfo.cs
- BackgroundWorker.cs
- BasicAsyncResult.cs
- ListMarkerLine.cs
- KeyValuePairs.cs
- ProfileGroupSettingsCollection.cs
- XpsDocument.cs
- EventMappingSettings.cs
- IntranetCredentialPolicy.cs
- TextEffectResolver.cs
- DataGridTableCollection.cs
- CompareInfo.cs
- ListBoxItemAutomationPeer.cs
- TypedRowHandler.cs
- ConsoleCancelEventArgs.cs
- Mapping.cs
- ManifestSignedXml.cs
- BooleanSwitch.cs
- ToolbarAUtomationPeer.cs
- DataRowExtensions.cs
- TraversalRequest.cs
- ListViewItemEventArgs.cs
- MultipartIdentifier.cs
- SemanticAnalyzer.cs
- InputScope.cs
- SinglePageViewer.cs
- BitStream.cs
- SrgsElement.cs
- TransactionFlowBindingElement.cs
- ErrorStyle.cs
- WorkflowApplicationAbortedException.cs
- Table.cs
- initElementDictionary.cs
- DeadCharTextComposition.cs
- XmlBuffer.cs
- EntityModelSchemaGenerator.cs
- ToolStripRenderEventArgs.cs
- WebBaseEventKeyComparer.cs
- InlinedLocationReference.cs
- EncodingDataItem.cs
- PackWebRequest.cs
- Stylesheet.cs
- RegexTree.cs
- ToolboxControl.cs
- ExpanderAutomationPeer.cs
- UnsafeNativeMethods.cs
- ApplicationDirectory.cs
- ContainerParaClient.cs
- DbTransaction.cs
- TimerEventSubscription.cs
- SafeSystemMetrics.cs
- ResourcesBuildProvider.cs
- TrailingSpaceComparer.cs
- WrappingXamlSchemaContext.cs
- InvokePatternIdentifiers.cs
- RequestCacheEntry.cs
- Mouse.cs
- BitStack.cs
- XmlSchemaObject.cs
- FormParameter.cs
- PeerNameRecordCollection.cs
- LinkButton.cs
- ManagementException.cs
- Animatable.cs
- TextRangeProviderWrapper.cs
- OleDbEnumerator.cs
- TreeBuilder.cs
- Baml2006KeyRecord.cs
- WindowsListViewItem.cs
- WebPartCatalogAddVerb.cs
- Nullable.cs
- SqlConnection.cs
- XpsImage.cs
- XmlTypeAttribute.cs
- WinEventTracker.cs
- SingleBodyParameterMessageFormatter.cs
- AdapterUtil.cs
- OutputCacheSettings.cs
- DataGridViewCheckBoxCell.cs
- StrongTypingException.cs
- RegexBoyerMoore.cs
- LabelTarget.cs