1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Overlays/Comments/CommentsShowMoreButton.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
926 B
C#
Raw Normal View History

2019-10-13 19:43:30 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Framework.Localisation;
2019-10-13 19:43:30 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Resources.Localisation.Web;
2019-10-13 19:43:30 +08:00
namespace osu.Game.Overlays.Comments
{
public partial class CommentsShowMoreButton : ShowMoreButton
{
public readonly BindableInt Current = new BindableInt();
protected override void LoadComplete()
{
Current.BindValueChanged(onCurrentChanged, true);
base.LoadComplete();
}
private void onCurrentChanged(ValueChangedEvent<int> count)
{
Text = new TranslatableString(@"_", "{0} ({1})",
CommonStrings.ButtonsShowMore.ToUpper(), count.NewValue);
2019-10-13 19:43:30 +08:00
}
}
}