如何在 C# 中将 switch case 语句与组框结合使用?

发布于 2025-01-15 05:31:33 字数 442 浏览 1 评论 0原文

我是 C# 新手,我正在尝试检查组框中七个单选按钮中的哪一个被选中。与“案例”相关的行给我带来了麻烦。我可以使用多个 if 语句使其工作,但我想知道 switch 语句是否也可以工作。感谢您的帮助!这是代码片段:

      {
          if (OptMaennlich.Checked == true)
          {
              double Grundumsatz = (double)NumGewicht.Value * 24;
              switch (GrpAktivitaet)
              {
                  case OptSchlafen.Checked == true
                      double PAL = 1.0;
                      break;

I am new to C# and I am trying to check which one of seven radio button within a group box is checked. The line with the "case" is giving me trouble. I am able to make it work using multiple if statements, but I would like to know if a switch statement would work too. Thanks for your help! Here is the code snippet:

      {
          if (OptMaennlich.Checked == true)
          {
              double Grundumsatz = (double)NumGewicht.Value * 24;
              switch (GrpAktivitaet)
              {
                  case OptSchlafen.Checked == true
                      double PAL = 1.0;
                      break;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裂开嘴轻声笑有多痛 2025-01-22 05:31:33

如果您仍然遇到困难并且正在使用 Windows 窗体,我建议您在属性检查器中或在组框中每个单选按钮的后面代码中订阅 CheckedChanged 事件。打开 RadioButton 的 Text 属性是在事件中实现此目的的一种方法。

在您的初始化代码中:

OptSchlafen.CheckedChanged += SomeFunctionToCheckChangedState;

并在您的代码中调用一个函数:

private void SomeFunctionToCheckChangedState(object sender, EventArgs e)
{
    // Insert your check logic here
    switch((sender as RadioButton).Text)
    {
        case "radiobuttontext":
            //what you want to do goes here
        break;
    }
}

当您单击单选按钮时,将触发此事件并调用该函数。

If you are still stuck and you are using Windows Forms, I would suggest subscribing to the CheckedChanged event either in the properties inspector or in the code behind for each of the radio buttons you have in your groupbox. Switching on the Text Property of the RadioButton is one way of achieving this in the event.

In your initialisation code:

OptSchlafen.CheckedChanged += SomeFunctionToCheckChangedState;

and in your code a function:

private void SomeFunctionToCheckChangedState(object sender, EventArgs e)
{
    // Insert your check logic here
    switch((sender as RadioButton).Text)
    {
        case "radiobuttontext":
            //what you want to do goes here
        break;
    }
}

When you click the radio button this event will be fired and the function called.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文