Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / HierarchicalDataTemplate.cs / 3 / 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. //---------------------------------------------------------------------------- // //// 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
- SqlConnectionString.cs
- SiteMapNodeItem.cs
- ListControl.cs
- WebServiceReceiveDesigner.cs
- Table.cs
- ContextQuery.cs
- SqlClientFactory.cs
- PreviewPrintController.cs
- RowParagraph.cs
- MultiView.cs
- CompiledQuery.cs
- StrongTypingException.cs
- TagNameToTypeMapper.cs
- ComEventsMethod.cs
- MetaDataInfo.cs
- MultidimensionalArrayItemReference.cs
- MsdtcWrapper.cs
- Authorization.cs
- ProcessInputEventArgs.cs
- ZipArchive.cs
- Ray3DHitTestResult.cs
- NameNode.cs
- Timer.cs
- EndpointDiscoveryBehavior.cs
- Page.cs
- BaseDataListPage.cs
- TreeNodeSelectionProcessor.cs
- CompiledRegexRunnerFactory.cs
- SoapHeaderAttribute.cs
- WindowManager.cs
- RelOps.cs
- SizeChangedInfo.cs
- ProvidersHelper.cs
- NotifyCollectionChangedEventArgs.cs
- TrackBar.cs
- _LazyAsyncResult.cs
- ProfileGroupSettingsCollection.cs
- XPathNavigator.cs
- OLEDB_Util.cs
- ExtractedStateEntry.cs
- WebControlsSection.cs
- NonSerializedAttribute.cs
- TargetConverter.cs
- SqlUnionizer.cs
- DynamicILGenerator.cs
- DictionaryCustomTypeDescriptor.cs
- ListBindingHelper.cs
- GroupJoinQueryOperator.cs
- TextSelectionProcessor.cs
- HtmlTernaryTree.cs
- HighlightVisual.cs
- ToolStripButton.cs
- OutputChannelBinder.cs
- BamlWriter.cs
- TextRangeSerialization.cs
- ProfilePropertySettingsCollection.cs
- FilteredSchemaElementLookUpTable.cs
- MetadataUtil.cs
- Decimal.cs
- FixedHyperLink.cs
- TypeUtils.cs
- DataObject.cs
- LinqDataView.cs
- RoutedEventConverter.cs
- ReferenceEqualityComparer.cs
- BindingContext.cs
- SpeechEvent.cs
- HeaderedItemsControl.cs
- DockPattern.cs
- WindowsStreamSecurityBindingElement.cs
- ThicknessKeyFrameCollection.cs
- RootBrowserWindowAutomationPeer.cs
- ListViewUpdatedEventArgs.cs
- URLMembershipCondition.cs
- Bold.cs
- CreateUserWizard.cs
- CategoryNameCollection.cs
- TiffBitmapEncoder.cs
- LoadMessageLogger.cs
- NavigationWindowAutomationPeer.cs
- HtmlSelect.cs
- UniqueIdentifierService.cs
- WindowsComboBox.cs
- ThicknessAnimationBase.cs
- SelectionWordBreaker.cs
- GifBitmapDecoder.cs
- XmlDataSourceView.cs
- TraceSection.cs
- ZipFileInfoCollection.cs
- DataBoundLiteralControl.cs
- WorkflowRuntimeServicesBehavior.cs
- QilNode.cs
- TargetConverter.cs
- XmlSignificantWhitespace.cs
- UTF32Encoding.cs
- XmlDownloadManager.cs
- CheckBoxField.cs
- FileInfo.cs
- SelectorAutomationPeer.cs
- WebPartCatalogAddVerb.cs