// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Windows.Automation.Provider;
namespace System.Windows.Controls
{
/// <summary>
/// Control that implements a selectable item inside a ListView.
/// </summary>
#if OLD_AUTOMATION
[Automation(AccessibilityControlType = "ListItem")]
#endif
public class ListViewItem : ListBoxItem
{
// NOTE: ListViewItem has no default theme style. It uses ThemeStyleKey
// to find default style for different view.
// helper to set DefaultStyleKey of ListViewItem
internal void SetDefaultStyleKey(object key)
{
DefaultStyleKey = key;
}
// helper to clear DefaultStyleKey of ListViewItem
internal void ClearDefaultStyleKey()
{
ClearValue(DefaultStyleKeyProperty);
}
}
}
|