Ejemplo n.º 1
0
        public void Clear()
        {
            Text_Sys.Clear();
            Text_Build.Clear();
            Text_Output.Clear();

            tms1.RemoveAll((o) => { return(true); });
            tms2.RemoveAll((o) => { return(true); });
            tms3.RemoveAll((o) => { return(true); });
        }
Ejemplo n.º 2
0
        private void NumberButton(object sender, EventArgs e)
        {
            if ((Text_Output.Text == "0") || Mono_OperationPerformed)
            {
                Text_Output.Clear();
            }

            Mono_OperationPerformed = false;
            Button button = (Button)sender;

            //function needed for the single used of dot button (.)

            if (button.Text == ".")
            {
                if (!Text_Output.Text.Contains("."))
                {
                    Text_Output.Text = Text_Output.Text + button.Text;
                }
            }
            else
            {
                Text_Output.Text = Text_Output.Text + button.Text;
            }
        }