窗體(文字框,按鈕,單選按鈕,標籤)
執行結果:
問題:
//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;
}
}
}
相關文章
- Python文字框與按鈕Python
- 單選多選按鈕
- HTML input radio單選按鈕HTML
- HTML input radio 單選按鈕HTML
- radio 單選按鈕 選中多個
- 配置選單按鈕掃一掃
- Tkinter (11) 選單按鈕部件 Menubutton
- Tkinter (15) 單選按鈕部件 Radiobutton
- 單選按鈕和核取方塊
- CSS3 美化radio單選按鈕CSSS3
- Chrome 22亮相 全新選單按鈕曝光Chrome
- RadioButton文字按鈕間距設定,按鈕在文字右端顯示,RadioButton 右端對齊
- Fiori Elements List Report table 裡的普通按鈕,Global 按鈕 和 Determining 按鈕
- JavaScript新增一個文字框並帶有刪除按鈕JavaScript
- 修改input標籤type=file型別按鈕的值型別
- 設定radio單選按鈕預設選中
- JavaScript獲取選中radio單選按鈕值JavaScript
- 高亮按鈕
- Tkinter (30) 選單按鈕部件 ttk.Menubutton
- Tkinter (34) 單選按鈕部件 ttk.Radiobutton
- uniapp更改導航欄按鈕文字APP
- JavaScript 點選按鈕返回底部JavaScript
- Android 點選按鈕跳轉Android
- css設定按鈕心跳收縮後,按鈕文字上下抖動,如何解決?CSS
- 選中按鈕改變文字大小和顏色
- Windows API視窗程式設計 - 系統標準按鈕WindowsAPI程式設計
- 原生前端:input標籤 number型別輸入框如何清除上下加減按鈕?前端型別
- 如何使用 Bootstrap class 向按鈕新增下拉選單boot
- [開發教程] 第17講:Bootstrap單選按鈕boot
- Flutter Button(按鈕)Flutter
- 小程式按鈕
- 復飛按鈕
- 防止頁面按鈕多次點選
- 一個頁面內放入文字框和按鈕,實現文字框和按鈕輸繫結,輸入圓半徑,計算圓面積並彈窗計算結果顯示出來。(js)JS
- 點選刪除按鈕彈出是否刪除提示框
- HTML 單選按鈕實現 (性別選擇)(解讀)HTML
- Umi4選單欄將collapse按鈕放置底部
- IDEA Debug框的 show execution point按鈕沒了Idea
- 【Oculus Interaction SDK】(六)實體按鈕 && 按壓互動