csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
using Avalonia.Automation.Peers;
|
|
using Avalonia.Controls.Metadata;
|
|
using Avalonia.Controls.Mixins;
|
|
|
|
namespace Avalonia.Controls
|
|
{
|
|
/// <summary>
|
|
/// A selectable item in a <see cref="ListBox"/>.
|
|
/// </summary>
|
|
[PseudoClasses(":pressed", ":selected")]
|
|
public class ListBoxItem : ContentControl, ISelectable
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="IsSelected"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<bool> IsSelectedProperty =
|
|
AvaloniaProperty.Register<ListBoxItem, bool>(nameof(IsSelected));
|
|
|
|
/// <summary>
|
|
/// Initializes static members of the <see cref="ListBoxItem"/> class.
|
|
/// </summary>
|
|
static ListBoxItem()
|
|
{
|
|
SelectableMixin.Attach<ListBoxItem>(IsSelectedProperty);
|
|
PressedMixin.Attach<ListBoxItem>();
|
|
FocusableProperty.OverrideDefaultValue<ListBoxItem>(true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the selection state of the item.
|
|
/// </summary>
|
|
public bool IsSelected
|
|
{
|
|
get { return GetValue(IsSelectedProperty); }
|
|
set { SetValue(IsSelectedProperty, value); }
|
|
}
|
|
|
|
protected override AutomationPeer OnCreateAutomationPeer()
|
|
{
|
|
return new ListItemAutomationPeer(this);
|
|
}
|
|
}
|
|
}
|
|
|