gpt4 book ai didi

c# - Boolean cast Specified cast is not valid 错误

转载 作者:太空狗 更新时间:2023-10-29 22:07:09 27 4
gpt4 key购买 nike

我目前正在存储复选框的真/假状态。在注册表中检查值以在下次加载表单时重置。

加载表单时,我获取值并像这样设置复选框。

string value = (string)Registry.GetValue(@"HKEY_CURRENT_USER\Software\CompanyName\AddressLoad", "SpaceBetween1", null);
if (value != null)
{
if (value == "True")
{
checkBox1.Checked = true;
} Else {
checkBox1.Checked = false;
}
}

这可行,但我觉得可能有更好的方法。

我试过了

checkBox1.Checked = (Boolean)Registry.GetValue(@"HKEY_CURRENT_USER\Software\CompanyName\AddressLoad", "SpaceBetween1", null);

但它给了我一个“Specified cast is not valid.”错误。

该值在注册表中存储为 REG_SZ。不确定这是否导致了他的问题。

enter image description here

我已经搜索了如何解决这个问题,但没有找到以这种方式完成的案例。

是否有更好的方法将字符串值转换为 bool 值并将其分配给复选框?

最佳答案

由于您从注册表中读取的值的类型是 string,因此您无法转换它。但是,您可以 convert它:

checkBox1.Checked = Convert.ToBoolean(
Registry.GetValue(
@"HKEY_CURRENT_USER\Software\CompanyName\AddressLoad"
, "SpaceBetween1"
, null
)
);

关于c# - Boolean cast Specified cast is not valid 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33633754/

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