我一直在尝试更改 html 文件中定义的复选框控件的值,此 html 文件显示在 webbrowser 控件中,并且 webbrowser 本身在 C# 中被定义为用户控件我愿意设置复选框的值来自包含我的用户控件的表单中的控件(在html文件和用户控件中定义)用户控件中的相关代码:
public bool _checkBoxProperty
{
set
{
if (webBrowser1.Document != null && webBrowser1.Document.GetElementById("Checkbox1") != null)
{
bool s = false;
string chpro = webBrowser1.Document.GetElementById("Checkbox1").GetAttribute("checked").ToString();
if (chpro == "false")
s = false;
s = value;
webBrowser1.Document.GetElementById("Checkbox1").SetAttribute("checked", value.ToString());
}
}
get
{
if (webBrowser1.Document != null && webBrowser1.Document.GetElementById("Checkbox1") != null)
{
{
string bls = webBrowser1.Document.GetElementById("Checkbox1").GetAttribute("checked");
return Convert.ToBoolean(bls);
}
}
else
return false;
}
}
这段代码在我的表单中带来了 checkbox 属性,我可以设置它的值,但是当我运行程序时它会将自身重置为 null,我已经在这段代码上工作了好几天,我非常感谢一些帮助:)