0% found this document useful (0 votes)
3 views1 page

Calculadora Interactiva de Operaciones

The document describes a calculator app with a stack layout containing labels and entries for the first number, second number, result, and operation selection. Buttons are included below for sum, subtract, divide, multiply, divide, and power operations which trigger click events to perform the respective calculations and display the result.

Uploaded by

Xose Alfredo DH
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Calculadora Interactiva de Operaciones

The document describes a calculator app with a stack layout containing labels and entries for the first number, second number, result, and operation selection. Buttons are included below for sum, subtract, divide, multiply, divide, and power operations which trigger click events to perform the respective calculations and display the result.

Uploaded by

Xose Alfredo DH
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<StackLayout Orientation= "Vertical">

<Label Text="CALCULADORA"
HorizontalOptions="Center" FontSize="Large"/>
<Entry Placeholder="Ingrese Numero 1" x:Name="Num1"/>
<Entry Placeholder="Ingrese Numero 2" x:Name="Num2"/>
<Entry Placeholder="Resultado" x:Name="Resultado"/>
<Label Text="Seleccione Operacion" FontSize="Medium"/>
</StackLayout>

<Button Text="Sumar" x:Name="Sumar" Clicked="Sumar_Clicked" />


<Button Text="Restar" x:Name="Restar" Clicked="Restar_Clicked"/>
<Button Text="Dividir" x:Name="Dividir" Clicked="Dividir_Clicked"/>
<Button Text="Multiplicar" x:Name="Multiplicar"
Clicked="Multiplicar_Clicked"/>
<Button Text="Dividir" x:Name="Dividir" Clicked="Dividir_Clicked"/>
<Button Text="Potencia" x:Name="Potencia" Clicked="Potencia_Clicked"/>

You might also like