using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace PowerTalkClient
{
public partial class LoginFrm : Form
{
public LoginFrm()
{
InitializeComponent();
}
private void pictureBox2_Click(object sender, EventArgs e)
{
//此处逻辑可以自行解决
FrmMain FM = new FrmMain(textBox1.Text);
FM.Show();
this.Visible = false;
}
}
}
Thursday, January 28, 2010
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment