mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
31 lines
963 B
C#
31 lines
963 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Ranking
|
|
{
|
|
public class ResultModeTabControl : TabControl<ResultMode>
|
|
{
|
|
public ResultModeTabControl()
|
|
{
|
|
TabContainer.Anchor = Anchor.BottomCentre;
|
|
TabContainer.Origin = Anchor.BottomCentre;
|
|
TabContainer.Spacing = new Vector2(15);
|
|
|
|
TabContainer.Masking = false;
|
|
TabContainer.Padding = new MarginPadding(5);
|
|
}
|
|
|
|
protected override Dropdown<ResultMode> CreateDropdown() => null;
|
|
|
|
protected override TabItem<ResultMode> CreateTabItem(ResultMode value) => new ResultModeButton(value)
|
|
{
|
|
Anchor = TabContainer.Anchor,
|
|
Origin = TabContainer.Origin
|
|
};
|
|
}
|
|
}
|