_035_将字母转化为大写或小写

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace _035_将字母转化为大写或小写
{
    public partial class Frm_main : Form
    {
        public Frm_main()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                textBox2.Text = textBox1.Text.ToUpper();
                
            }
            else
            {
                textBox2.Text = textBox1.Text.ToLower();
            }
        }
    }
}

猜你喜欢

转载自www.cnblogs.com/yuanshou/p/10269771.html
今日推荐