26 lines
538 B
C#
26 lines
538 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace ZicMoove
|
|
{
|
|
using Model.Workflow.Messaging;
|
|
|
|
namespace Pages
|
|
{
|
|
public partial class EventDetail : ContentPage
|
|
{
|
|
public EventDetail(YaEvent ev)
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = ev;
|
|
btn_webpage.Clicked += (object sender, EventArgs e) =>
|
|
{
|
|
App.PlatformSpecificInstance.OpenWeb(ev.EventWebPage);
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|