Tab control

This commit is contained in:
DrabWeb
2017-03-23 00:22:31 -03:00
parent 5138890530
commit c173c4b7ee
7 changed files with 270 additions and 1 deletions

View File

@ -0,0 +1,27 @@
// Copyright (c) 2007-2017 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.Containers;
using osu.Framework.Graphics.Primitives;
namespace osu.Game.Screens.Select
{
public class BeatmapDetailArea : Container
{
public BeatmapDetailArea()
{
Children = new Drawable[]
{
new BeatmapDetailAreaTabControl
{
RelativeSizeAxes = Axes.X,
},
new Container
{
Padding = new MarginPadding { Top = BeatmapDetailAreaTabControl.HEIGHT },
},
};
}
}
}