I want to display EULA text on login page. The EULA text should appear as hyperlink, so that user can click and read it. I have used the Lable control
var tapGestureRecognizer = new TapGestureRecognizer();
tapGestureRecognizer.SetBinding(TapGestureRecognizer.CommandProperty, "ShowEulaCommand");
this.lblEula.GestureRecognizers.Add(tapGestureRecognizer);
The label text is clickable and opening the required url. We want this text to look like hyperlink but unable to find the solution. Can some one help me underline the text or convert the Label with Hyperlink control?