登录界面如下所示:
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;
using System.Media;
namespace 登录
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static string str1 = "";
public static void playMusic()
{
SoundPlayer player = new SoundPlayer();
player.SoundLocation = @"C:\Users\xinqiang\Desktop\1.wav";
player.Play();
}
private void login_Click(object sender, EventArgs e)
{
string strname = txtName.Text.Trim();
string strpwd = txtpwd.Text;
if (rdostudent.Checked || rdoteacher.Checked)
{
if (rdostudent.Checked)
{
if (strname == "student" && strpwd == "student")
{
if (txtvertify.Text.CompareTo(str1) == 0)
{
MessageBox.Show("登陆成功");
playMusic();
}
else
MessageBox.Show("验证码错误");
}