Advertisement
nm9505

MenuDemoDetail-XAML

Aug 4th, 2023
1,295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.17 KB | None | 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:MenuDemo"
  5.     xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6.     x:Class="MenuDemo.Detail"
  7.     Title="Estadística Descriptiva 2.0" >
  8.     <StackLayout x:Name="Page1" BackgroundColor="SkyBlue" Orientation="Vertical"  >
  9.             <Frame Padding="5" BackgroundColor="Black" CornerRadius="10" HorizontalOptions="CenterAndExpand" Margin="5,0">
  10.                 <Entry x:Name="entero" Placeholder="Ingrese→N" PlaceholderColor="DimGray" BackgroundColor="Black"  
  11.                 FontSize="22" TextColor="Yellow" FontAttributes="Bold" FlowDirection="LeftToRight" Keyboard="Numeric" />
  12.             </Frame>
  13.             <Grid Padding="5,5" HorizontalOptions="CenterAndExpand" Margin="0">
  14.             <Grid.RowDefinitions>
  15.                 <RowDefinition/>
  16.                 <RowDefinition/>
  17.  
  18.             </Grid.RowDefinitions>
  19.             <Grid.ColumnDefinitions>
  20.                 <ColumnDefinition/>
  21.                 <ColumnDefinition/>
  22.                 <ColumnDefinition/>
  23.                 <ColumnDefinition/>
  24.                 <ColumnDefinition/>
  25.             </Grid.ColumnDefinitions>
  26.                     <!-- Primer Fila Interfaz Grid-->
  27.                 <Button x:Name="BtTC" Grid.Row="0" Grid.Column ="0" BackgroundColor="Blue" Text="Ten-Central μ , M, Mo" Clicked="BtTCClick" TextTransform="Lowercase"
  28.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
  29.                 <Button x:Name="BtOrdenDat" Grid.Row="0" Grid.Column ="1" BackgroundColor="Blue" Text="Or-Dat" Clicked="BtOrdenDatClick"
  30.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />             
  31.                 <Button x:Name="BtFrec" Grid.Row="0" Grid.Column ="2" BackgroundColor="Blue" Text="f-Simple" Clicked="BtFrecClick"
  32.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />             
  33.                 <Button x:Name="BtCuartiles" Grid.Row="0" Grid.Column ="3" BackgroundColor="Blue" Text="Cuartiles" Clicked="BtCuartilesClick"
  34.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />  
  35.                 <Button x:Name="BtNDatos" Grid.Row="0" Grid.Column ="4" BackgroundColor="Black" Text="→ N" Clicked="BtNDatosClick"  
  36.                 FontSize="15" TextColor="HotPink" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
  37.                     <!--Segundo-Fila Interfaz Grid-->
  38.  
  39.                 <Button x:Name="BtSesgo" Grid.Row="1" Grid.Column ="0" BackgroundColor="Blue" Text="Sesgo" Clicked="BtSesgoClick"
  40.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />  
  41.                 <Button x:Name="BtCurt" Grid.Row="1" Grid.Column ="1" BackgroundColor="Blue" Text="Curtosis" Clicked="BtCurtClick"
  42.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />  
  43.                 <Button x:Name="BtDisp" Grid.Row="1" Grid.Column ="2" BackgroundColor="Blue" Text="Dispersion" Clicked="BtDispClick"
  44.                 FontSize="8" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />  
  45.                 <Button x:Name="BtAgrup" Grid.Row="1" Grid.Column ="3" BackgroundColor="Blue" Text="Ag-Dis" Clicked="BtAgrupClick"
  46.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />                 
  47.                 <Button x:Name="BtReinicio" Grid.Row="1" Grid.Column ="4" BackgroundColor="Red" Text="Reiniciar" Clicked="BtReinicioClick"
  48.                 FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
  49.                     <!--Tercer-Fila Interfaz Grid-->
  50.  
  51.                     <!--Inicio-interfaz-visualizador-De-Resultados-->
  52.             </Grid>
  53.             <ScrollView Margin="5" Padding="5,0"  >
  54.                 <Frame x:Name="marco" Padding="0,1,0,1" BackgroundColor="Black" CornerRadius="10"
  55.                     HorizontalOptions="CenterAndExpand" IsVisible="False" RotationX="30" >
  56.                     <Label x:Name="ResED" Padding="1,1,1,1" FontSize="15" BackgroundColor="Blue" TextColor="White" Scale="0.9" />
  57.                    
  58.                 </Frame>
  59.                
  60.             </ScrollView>
  61.     </StackLayout>
  62.    
  63. </ContentPage>
  64.  
  65.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement