35 строки
458 B
C#
35 строки
458 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace XAMLator.SampleApp
|
|
{
|
|
public partial class Calculator : ContentPage
|
|
{
|
|
public Calculator()
|
|
{
|
|
InitializeComponent();
|
|
BackgroundColor = Color.Blue;
|
|
}
|
|
|
|
void OnSelectNumber(object sender, EventArgs args)
|
|
{
|
|
|
|
}
|
|
|
|
void OnSelectOperator(object sender, EventArgs args)
|
|
{
|
|
|
|
}
|
|
|
|
void OnClear(object sender, EventArgs args)
|
|
{
|
|
|
|
}
|
|
|
|
void OnCalculate(object sender, EventArgs args)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|