18 lines
431 B
C#
18 lines
431 B
C#
|
|
using Wino.Views.Abstract;
|
|||
|
|
|
|||
|
|
namespace Wino.Views
|
|||
|
|
{
|
|||
|
|
public sealed partial class WelcomePage : WelcomePageAbstract
|
|||
|
|
{
|
|||
|
|
public WelcomePage()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//private async void HyperlinkClicked(object sender, Microsoft.Toolkit.Uwp.UI.Controls.LinkClickedEventArgs e)
|
|||
|
|
//{
|
|||
|
|
// await Launcher.LaunchUriAsync(new System.Uri(e.Link));
|
|||
|
|
//}
|
|||
|
|
}
|
|||
|
|
}
|