//---------------------------------------------------------------------------- //--------------------------End of simple calculator-------------------------- //---------------------------------------------------------------------------- //-----------exponential----------- // used to square an entry private void squaredButton_Click(object sender, EventArgs e) { functions.Square(); display.Text = functions.Entry; }