Advertisement
nm9505

MS-MainPage-xaml

May 21st, 2024 (edited)
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.50 KB | Science | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3.     xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
  4.     xmlns:local="clr-namespace:MandelBrootSet"
  5.     xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6.     x:Class="MandelBrootSet.MainPage">
  7.  
  8.      <StackLayout x:Name="LayMain" BackgroundColor="Black"
  9.         Padding="10,0,10,10" >
  10.         <Label x:Name="lbl1" FontSize="15" TextColor="Yellow" HorizontalTextAlignment="Center" />
  11.         <Label x:Name="lbl2" FontSize="13" TextColor="LightBlue" />
  12.         <Frame x:Name="marco" Padding="10,10" Margin="200,0,15,0" BackgroundColor="Black">  
  13.             <Entry x:Name="Iteraciones" Placeholder="# Iteraciones" Keyboard="Numeric"
  14.             HorizontalTextAlignment="Center" ClearButtonVisibility="WhileEditing" />
  15.         </Frame>
  16.          <Grid VerticalOptions="CenterAndExpand" >
  17.              <ContentView Padding="10, 0"
  18.              VerticalOptions="Center">
  19.  
  20.              </ContentView>
  21.              <Image x:Name="image" Scale="1"/>
  22.          </Grid>
  23.          <Button x:Name="calculateButton" Margin="0,0,0,125"
  24.              Text="Graficar" CornerRadius="10"
  25.              FontSize="13" BackgroundColor="Blue"
  26.              HorizontalOptions="Center" TextColor="White"
  27.              Clicked="OnCalculateButtonClicked" />
  28.          <ActivityIndicator x:Name="activityIndicator" Color="Blue" Scale="0.7" />       
  29.          <Button x:Name="WebCode" BackgroundColor="Green" HeightRequest="45" WidthRequest="5"
  30.                 TextColor="White" TextTransform="Lowercase" CornerRadius="20" Margin="70,0,70,0"
  31.                 Clicked="webCodeClick" />
  32.      </StackLayout>
  33. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement