Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
- xmlns:local="clr-namespace:MenuDemo"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="MenuDemo.Detail"
- Title="Estadística Descriptiva 2.0" >
- <StackLayout x:Name="Page1" BackgroundColor="SkyBlue" Orientation="Vertical" >
- <Frame Padding="5" BackgroundColor="Black" CornerRadius="10" HorizontalOptions="CenterAndExpand" Margin="5,0">
- <Entry x:Name="entero" Placeholder="Ingrese→N" PlaceholderColor="DimGray" BackgroundColor="Black"
- FontSize="22" TextColor="Yellow" FontAttributes="Bold" FlowDirection="LeftToRight" Keyboard="Numeric" />
- </Frame>
- <Grid Padding="5,5" HorizontalOptions="CenterAndExpand" Margin="0">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <!-- Primer Fila Interfaz Grid-->
- <Button x:Name="BtTC" Grid.Row="0" Grid.Column ="0" BackgroundColor="Blue" Text="Ten-Central μ , M, Mo" Clicked="BtTCClick" TextTransform="Lowercase"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtOrdenDat" Grid.Row="0" Grid.Column ="1" BackgroundColor="Blue" Text="Or-Dat" Clicked="BtOrdenDatClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtFrec" Grid.Row="0" Grid.Column ="2" BackgroundColor="Blue" Text="f-Simple" Clicked="BtFrecClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtCuartiles" Grid.Row="0" Grid.Column ="3" BackgroundColor="Blue" Text="Cuartiles" Clicked="BtCuartilesClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtNDatos" Grid.Row="0" Grid.Column ="4" BackgroundColor="Black" Text="→ N" Clicked="BtNDatosClick"
- FontSize="15" TextColor="HotPink" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <!--Segundo-Fila Interfaz Grid-->
- <Button x:Name="BtSesgo" Grid.Row="1" Grid.Column ="0" BackgroundColor="Blue" Text="Sesgo" Clicked="BtSesgoClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtCurt" Grid.Row="1" Grid.Column ="1" BackgroundColor="Blue" Text="Curtosis" Clicked="BtCurtClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtDisp" Grid.Row="1" Grid.Column ="2" BackgroundColor="Blue" Text="Dispersion" Clicked="BtDispClick"
- FontSize="8" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtAgrup" Grid.Row="1" Grid.Column ="3" BackgroundColor="Blue" Text="Ag-Dis" Clicked="BtAgrupClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <Button x:Name="BtReinicio" Grid.Row="1" Grid.Column ="4" BackgroundColor="Red" Text="Reiniciar" Clicked="BtReinicioClick"
- FontSize="10" TextColor="White" FontAttributes="Bold" Padding="5" BorderRadius="10" BorderWidth="3" BorderColor="Black" />
- <!--Tercer-Fila Interfaz Grid-->
- <!--Inicio-interfaz-visualizador-De-Resultados-->
- </Grid>
- <ScrollView Margin="5" Padding="5,0" >
- <Frame x:Name="marco" Padding="0,1,0,1" BackgroundColor="Black" CornerRadius="10"
- HorizontalOptions="CenterAndExpand" IsVisible="False" RotationX="30" >
- <Label x:Name="ResED" Padding="1,1,1,1" FontSize="15" BackgroundColor="Blue" TextColor="White" Scale="0.9" />
- </Frame>
- </ScrollView>
- </StackLayout>
- </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement