Statistiques
| Branche: | Révision:

teotestbluetooth / TestXamConnections / TestXamConnections / Views / InternServiceView.xaml.cs @ be694ed4

Historique | Voir | Annoter | Télécharger (619 octets)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
using TestXamConnections.ViewModels;
7
using Xamarin.Forms;
8
using Xamarin.Forms.Xaml;
9

    
10
namespace TestXamConnections.Views
11
{
12
    [XamlCompilation(XamlCompilationOptions.Compile)]
13
    public partial class InternServiceView : ContentPage
14
    {
15
        public InternServiceView()
16
        {
17
            InitializeComponent();
18
            BindingContext = new InternServiceViewModel();
19
        }
20

    
21
        protected override void OnDisappearing()
22
        {
23
            base.OnDisappearing();
24
        }
25
    }
26
}