Exemple #1
0
        void CrearVistas()
        {
            loading = new Cargando();


            //paginaPrincipal = new PaginaPricipal
            //{
            //    TranslationX = 420
            //};

            Fondo = new BoxView
            {
                BackgroundColor = Colores.FondoLogin
            };

            logoUtap = new Image
            {
                Source = Imagenes.LogoUtap
            };

            labelBienvenidos = new Label
            {
                Text              = "Bienvenidos",
                BackgroundColor   = Color.Transparent,
                HorizontalOptions = LayoutOptions.Center,
                TextColor         = Colores.BLanco,
                FontSize          = Palabras.Texto_Bienvenidos
            };

            Documento = new Entry
            {
                Placeholder      = "No. Documento",
                PlaceholderColor = Colores.BLanco,
                FontSize         = Palabras.CajasTextoLogin
                                   //Keyboard = Keyboard.Numeric
            };

            Codigo = new Entry
            {
                Placeholder      = "Codigo",
                PlaceholderColor = Colores.BLanco,
                FontSize         = Palabras.CajasTextoLogin
                                   //Keyboard = Keyboard.Numeric
            };

            Contraseña = new Entry
            {
                Placeholder      = "Contraseña",
                PlaceholderColor = Colores.BLanco,
                IsPassword       = true,
                FontSize         = Palabras.CajasTextoLogin
            };

            AccesoApp = new Button
            {
                Text              = "Acceder a la App",
                BackgroundColor   = Colores.Boton,
                TextColor         = Colores.Negro,
                HorizontalOptions = LayoutOptions.Center,
                VerticalOptions   = LayoutOptions.Center
            };

            OlvidarContraseña = new Label
            {
                Text              = "¿Olvido su Contraseña?",
                BackgroundColor   = Color.Transparent,
                HorizontalOptions = LayoutOptions.Center,
                TextColor         = Colores.BLanco,
                FontSize          = Palabras.EnlacesLogin
            };

            circulo = new BoxView
            {
                BackgroundColor = Color.Green,
                CornerRadius    = 40,
                Scale           = 20
            };

            Contenido = new StackLayout();

            contenedorLogin = new RelativeLayout();

            // Eventos

            TapOlvidarContrasena = new TapGestureRecognizer();
            OlvidarContraseña.GestureRecognizers.Add(TapOlvidarContrasena);

            Content = AccesoApp;
        }