| File: System\Windows\Controls\ItemContainerTemplate.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Windows.Markup; namespace System.Windows.Controls { /// <summary> /// The template that produces a container for an ItemsControl /// </summary> [DictionaryKeyProperty("ItemContainerTemplateKey")] public class ItemContainerTemplate : DataTemplate { /// <summary> /// The key that will be used if the ItemContainerTemplate is added to a /// ResourceDictionary in Xaml without a specified Key (x:Key). /// </summary> public object ItemContainerTemplateKey { get { return (DataType != null) ? new ItemContainerTemplateKey(DataType) : null; } } } }