Beispiel #1
0
        private void preview_Click(object sender, EventArgs e)
        {
            if (!preCheck())
            {
                return;
            }
            PythonExchange python = new PythonExchange();

            python.executePreview(source.Text);
        }
Beispiel #2
0
        private void exchange_Click(object sender, EventArgs e)
        {
            if (!preCheck())
            {
                return;
            }
            PythonExchange python = new PythonExchange();

            exchangeErea.Text = python.executeExchange(source.Text);
        }