大小写字母装换器

来源:互联网 发布:手机淘宝已购买生成器 编辑:程序博客网 时间:2024/06/07 12:02

大小写字母装换器

实现代码:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace 实验2._1{    public partial class Form1 : Form    {        string s;        public Form1()        {            InitializeComponent();        }           private void button1_Click(object sender, EventArgs e)        {            s = textBox1.Text;            string b = s.ToUpper();            textBox1.Text = b;        }        private void button2_Click(object sender, EventArgs e)        {            s = textBox1.Text;            string b = s.ToLower();            textBox1.Text = b;        }        private void button3_Click(object sender, EventArgs e)        {            Application.Exit();        }            }}


原创粉丝点击