Files
MRCC/launcher/PCL-CE/Plain Craft Launcher 2/Pages/PageSpeedRight.xaml.cs
T

15 lines
231 B
C#
Raw Normal View History

namespace PCL;
public partial class PageSpeedRight
{
public PageSpeedRight()
{
InitializeComponent();
Loaded += (_, _) => Init();
}
private void Init()
{
PanBack.ScrollToHome();
}
}