c# 中鼠标无法控制textbox 。通过点击无法切换textbox之间的焦点
一个很简单的登入对话框。增加textbox控件,但是运行后,鼠标点击文本输入框,整个界面就最小化了。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.IO;
namespace jiay
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public string straccount = "";
public string strpwd= "";
private void account_TextChanged(object sender, EventArgs e)
{
}
private void login_Click(object sender, EventArgs e)
{
straccount = account.Text;
strpwd = password.Text;
}
}
} --------------------编程问答-------------------- 从你给的代码根本看不出什么,强烈建议你使用vs重新实现你的“登入对话框”,应该就没有问题了 --------------------编程问答-------------------- http://bbs.csdn.net/topics/70359034
本来想按这个办法,发现vs2010.net没有textBoxName.attributes这个了。
Add Attributes:
textBoxName.Attributes["onclick"]="return focusIt(this)"; --------------------编程问答--------------------
就这几行代码,重新实现一下呗
你给出的代码本身就没什么问题,就算采取方法解决了,感觉也不伦不类
补充:.NET技术 , C#