gpt4 book ai didi

c# - 在 C# 中禁用和启用按钮

转载 作者:太空狗 更新时间:2023-10-29 18:00:26 24 4
gpt4 key购买 nike

我正在做一些相当简单的事情,我认为它会很简单。我想要的是单击 button1 时我希望它禁用 button1 并启用 button2。我收到以下错误:错误1 只有assignment、call、increment、decrement、new object expression可以作为语句使用。

private readonly Process proc = new Process();
public Form1()
{
InitializeComponent();
button2.Enabled = false;
}

private void button1_Click(object sender, EventArgs e)
{
proc.StartInfo = new ProcessStartInfo {
FileName = Environment.GetFolderPath(Environment.SpecialFolder.Windows) + "/explorer.exe",
Arguments = @"D:\",
UseShellExecute = false
};
proc.Start();
button1.Enabled = false;
button2.Enabled = true;
}


private void button2_Click(object sender, EventArgs e)
{
proc.Kill();
button1.Enabled = true;
button2.Enabled = false;
}

最佳答案

在您的 button1_click 函数中,您使用 '==' 来表示 button2.Enabled == true;

这应该是 button2.Enabled = true;

关于c# - 在 C# 中禁用和启用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4107955/

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