18 lines
372 B
C#

using System.Diagnostics;
namespace Sunny.UI.Demo
{
public partial class FLabel : UIPage
{
public FLabel()
{
InitializeComponent();
}
private void uiLinkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
{
Process.Start(uiLinkLabel1.Text);
}
}
}