窗體(文字框,按鈕,單選按鈕,標籤)

萬里無雲便是我發表於2017-05-07

執行結果:




問題:

        //6.設計一個如圖實驗8-6所示的窗體。窗體上有兩個文字框:一個文字框中最多輸入字元6個;一個文字框中輸入任何內容都顯示*號。
        //再新增一個按鈕、兩個單選按鈕。實現單擊按鈕後,根據單選按鈕,將對應文字框中內容顯示在標籤

程式碼:

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 實驗8._6
{
    public partial class Form1 : Form
    {
        String s;
        public Form1()
        {
            InitializeComponent();
           
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.Text = "單選按鈕實驗";
            radioButton1.Text="獲取第一個文字框的內容";
            radioButton2.Text = "獲取第二個文字框的內容";
            button1.Text = "根據單選按鈕,將對應文字框中內容顯示在標籤";
        }





        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            textBox1.MaxLength = 6;
        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {
            textBox2.PasswordChar ='*';
        }

        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            s = textBox1.Text;
        }

        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {
            s = textBox2.Text;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            label1.Text = s;
        }
    }
}




相關文章