gpt4 book ai didi

c# - 如何通过编码点击一个按钮?

转载 作者:太空狗 更新时间:2023-10-30 00:35:09 25 4
gpt4 key购买 nike

我的程序中有两个按钮,我希望当我按下第一个按钮时自动单击第二个按钮(在第一个按钮的事件处理程序中,我想通过编码按下第二个按钮)。

private void button1_Click(object sender, EventArgs e)
{

passWord = pwd.Text;
user = uName.Text;


loginbackend obj = new loginbackend();
bool isValid = obj.IsValidateCredentials(user, passWord, domain);
if (isValid)
{
loginbackend login = new loginbackend();
passWord = pwd.Text;

login.SaveUserPass(passWord);
HtmlDocument webDoc = this.webBrowser1.Document;
HtmlElement username = webDoc.GetElementById("__login_name");
HtmlElement password = webDoc.GetElementById("__login_password");

username.SetAttribute("value", user);
password.SetAttribute("value", passWord);

HtmlElementCollection inputTags = webDoc.GetElementsByTagName("input");

foreach (HtmlElement hElement in inputTags)
{
string typeTag = hElement.GetAttribute("type");
string typeAttri = hElement.GetAttribute("value");

if (typeTag.Equals("submit") && typeAttri.Equals("Login"))
{
hElement.InvokeMember("click");

break;
}
}
button3_Click(sender, e);
label1.Visible = false ;
label3.Visible = false;
uName.Visible = false;
pwd.Visible = false;
button1.Visible = false;
button2.Visible = true;
}
else
{
MessageBox.Show("Invalid Username or Password");
}

}
private void button3_Click(object sender, EventArgs e)
{
HtmlDocument webDoc1 = this.webBrowser1.Document;
HtmlElementCollection aTags = webDoc1.GetElementsByTagName("a");

foreach (HtmlElement link in aTags)
{
if (link.InnerText.Equals("Show Assigned"))
{
link.InvokeMember("click");
break;
}
}
}

最佳答案

我认为您所描述的是您希望在单击按钮 B 时调用一个方法,然后在单击按钮 A 时也调用该方法。

protected void ButtonA_Click(...)
{
DoWork();
}

protected void ButtonB_Click(...)
{
// do some extra work here
DoWork();
}

private void DoWork()
{
// do the common work here
}

根据您在事件处理程序中的实现,您也可以只从第一个按钮调用第二个按钮的事件处理程序,但上述方法是“正确”的方法。

关于c# - 如何通过编码点击一个按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5539854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com