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.
123 lines
4.2 KiB
123 lines
4.2 KiB
// -----------------------------------------------------------------------
|
|
// <copyright file="TabControl.cs" company="Steven Kirk">
|
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Controls
|
|
{
|
|
using Perspex.Animation;
|
|
using Perspex.Collections;
|
|
using Perspex.Controls.Primitives;
|
|
using Perspex.Controls.Templates;
|
|
using Perspex.Input;
|
|
|
|
/// <summary>
|
|
/// A tab control that displays a tab strip along with the content of the selected tab.
|
|
/// </summary>
|
|
public class TabControl : SelectingItemsControl, ILogical
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="SelectedContent"/> property.
|
|
/// </summary>
|
|
public static readonly PerspexProperty<object> SelectedContentProperty =
|
|
PerspexProperty.Register<TabControl, object>("SelectedContent");
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="SelectedTab"/> property.
|
|
/// </summary>
|
|
public static readonly PerspexProperty<TabItem> SelectedTabProperty =
|
|
PerspexProperty.Register<TabControl, TabItem>("SelectedTab");
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="Transition"/> property.
|
|
/// </summary>
|
|
public static readonly PerspexProperty<IPageTransition> TransitionProperty =
|
|
Deck.TransitionProperty.AddOwner<TabControl>();
|
|
|
|
private PerspexReadOnlyListView<ILogical> logicalChildren =
|
|
new PerspexReadOnlyListView<ILogical>();
|
|
|
|
/// <summary>
|
|
/// Initializes static members of the <see cref="TabControl"/> class.
|
|
/// </summary>
|
|
static TabControl()
|
|
{
|
|
AutoSelectProperty.OverrideDefaultValue<TabControl>(true);
|
|
FocusableProperty.OverrideDefaultValue<TabControl>(false);
|
|
SelectedIndexProperty.Changed.AddClassHandler<TabControl>(x => x.SelectedIndexChanged);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="TabControl"/> class.
|
|
/// </summary>
|
|
public TabControl()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the content of the selected tab.
|
|
/// </summary>
|
|
public object SelectedContent
|
|
{
|
|
get { return this.GetValue(SelectedContentProperty); }
|
|
private set { this.SetValue(SelectedContentProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the <see cref="SelectedItem"/> as a <see cref="TabItem"/>.
|
|
/// </summary>
|
|
public TabItem SelectedTab
|
|
{
|
|
get { return this.GetValue(SelectedTabProperty); }
|
|
private set { this.SetValue(SelectedTabProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the transition to use when switching tabs.
|
|
/// </summary>
|
|
public IPageTransition Transition
|
|
{
|
|
get { return this.GetValue(TransitionProperty); }
|
|
set { this.SetValue(TransitionProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the logical children of the control.
|
|
/// </summary>
|
|
IPerspexReadOnlyList<ILogical> ILogical.LogicalChildren
|
|
{
|
|
get { return this.logicalChildren; }
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
// Don't handle keypresses.
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override void OnTemplateApplied()
|
|
{
|
|
base.OnTemplateApplied();
|
|
|
|
var deck = this.GetTemplateChild<Deck>("deck");
|
|
this.logicalChildren.Source = ((ILogical)deck).LogicalChildren;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when the <see cref="SelectedIndex"/> property changes.
|
|
/// </summary>
|
|
/// <param name="e">The event args.</param>
|
|
private void SelectedIndexChanged(PerspexPropertyChangedEventArgs e)
|
|
{
|
|
if ((int)e.NewValue != -1)
|
|
{
|
|
var item = this.SelectedItem as IContentControl;
|
|
var content = item?.Content ?? item;
|
|
this.SelectedTab = item as TabItem;
|
|
this.SelectedContent = content;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|