You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
493 B

/*!
* \file DetailRace.xmal.cs
* \author Léana Besson
* \namespace Views
*/
namespace Views;
/*!
* \class DetailRace
* \brief Regroups functions for DetailRace page operation
*/
public partial class DetailRace : ContentPage
{
/*!
* \fn DetailRace()
* \brief DetailRace page constructor with component initialization and context binding assignment
*/
public DetailRace()
{
InitializeComponent();
BindingContext = (App.Current as App).RaceSelectionner;
}
}