mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
// 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.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
internal class TestCaseBreadcrumbs : OsuTestCase
|
|
{
|
|
public override string Description => @"breadcrumb > control";
|
|
|
|
public TestCaseBreadcrumbs()
|
|
{
|
|
BreadcrumbControl<BreadcrumbTab> c;
|
|
Add(c = new BreadcrumbControl<BreadcrumbTab>
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
RelativeSizeAxes = Axes.X,
|
|
Width = 0.5f,
|
|
});
|
|
|
|
AddStep(@"first", () => c.Current.Value = BreadcrumbTab.Click);
|
|
AddStep(@"second", () => c.Current.Value = BreadcrumbTab.The);
|
|
AddStep(@"third", () => c.Current.Value = BreadcrumbTab.Circles);
|
|
}
|
|
|
|
private enum BreadcrumbTab
|
|
{
|
|
Click,
|
|
The,
|
|
Circles,
|
|
}
|
|
}
|
|
}
|