Esempio n. 1
0
 public AlphaSettingsPage()
 {
     Title              = L["Settings"];
     UserNameCell       = AlphaFactory.MakeEntryCell();
     UserNameCell.Label = L["User ID"];
     LanguageCell       = AlphaFactory.MakePickerCell();
 }
Esempio n. 2
0
        public AlphaSettingsPage()
        {
            Title        = L["Settings"];
            LanguageCell = AlphaFactory.MakePickerCell();

            UserLabel.Command = new Command
                                (
                o => AlphaFactory
                .MakeSureApp()
                .ShowSelectUserPage
                (
                    NewUser =>
            {
                Settings.UserName = NewUser;
                Root.OnChangeSettings();
            }
                )
                                );
        }