2020-05-11 21:11:29 +08:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace Sunny.UI.Demo
|
|
|
|
|
{
|
2021-06-22 09:43:13 +08:00
|
|
|
|
public partial class FLabel : UIPage
|
2020-05-11 21:11:29 +08:00
|
|
|
|
{
|
|
|
|
|
public FLabel()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 09:43:13 +08:00
|
|
|
|
private void uiLinkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
|
2020-05-11 21:11:29 +08:00
|
|
|
|
{
|
|
|
|
|
Process.Start(uiLinkLabel1.Text);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-22 09:43:13 +08:00
|
|
|
|
}
|