Ejemplo n.º 1
0
 GlobalData _gd;                                      //declares local instances of global data
 public CreationPage(GlobalData gd)                   //creation page constructor
 {
     NavigationPage.SetHasNavigationBar(this, false); //hides the default navigation bar
     _gd = gd;                                        //sets local instance of global data
     InitializeComponent();                           //initializes ui elements of the page
 }
Ejemplo n.º 2
0
 public CreationPage(GlobalData gd)
 {
     _gd = gd;
     InitializeComponent();
 }
Ejemplo n.º 3
0
        GlobalData _gd;                                         //instantiates global variable GlobalData to store the global data

        public PrevApartmentPage(GlobalData gd)                 //constructor for PrevApartment page
        {
            NavigationPage.SetHasNavigationBar(this, false);    //hides the default navigation bar
            _gd = gd;                                           //sets the private instance of global variable
            InitializeComponent();                              //initialize the UI
        }
Ejemplo n.º 4
0
 public SettingsPage(GlobalData gd)                   //constructor for settings page
 {
     _gd = gd;                                        //sets a local instance of global data
     NavigationPage.SetHasNavigationBar(this, false); //hides the default navigation bar
     InitializeComponent();                           //initializes the UI
 }
Ejemplo n.º 5
0
 public PrevApartmentPage(GlobalData gd)
 {
     _gd = gd;
     InitializeComponent();
 }
Ejemplo n.º 6
0
 public InitialPage(GlobalData gd)
 {
     _gd = gd;
     InitializeComponent();
 }
Ejemplo n.º 7
0
        /// <summary>
        /// Fills the Message with the necessary data.
        /// </summary>
        /// <param name="apartmentID"></param>
        async public Task getItemsInMessage(GlobalData gd)
        {
            messages = new List <MessageObject>();

            messages = await(ServerHandeler.getMessages(gd));
        }
Ejemplo n.º 8
0
 public void sendToServer(GlobalData gdFile)
 {
 }