Windowsフォームのラジオボタンをグループ化するにはどうすればよいですか?


315

Windowsフォームアプリケーションのラジオボタンをグループ化するにはどうすればよいですか(ASP.NETのradiobuttonlistによく似ています!)

したがって、オプションから選択した各ケースを切り替えることができます。


1
あなたは見てとることができ、WindowsがRadioButtonListのフォーム
レザAghaei

スクリーンショットを見る:stackoverflow.com/a/46424314/984780
Luis Perez

回答:


425

グループのすべてのラジオボタンをPanelやなどのコンテナオブジェクトに配置しますGroupBox。これにより、Windowsフォームで自動的にグループ化されます。


13
@mohammadsadeghsaati問題はWindowsフォームのRadioButtonに関するもので、GroupNameプロパティを公開していません。
UweB 2014年

2
@UweB問題が発生したためにグループボックスとパネルを追加できない場合は、フォームに十分なスペースがないとしましょう。それで?
ムハンマドサキブ2015年

2
@MuhammadSaqibパネルのサイズをゼロにすることができるので、それは不可能です。非表示の境界線があり、マージンがないパネルは、プレーンフォームと同じです。テーブルなどにグループ化する必要がある場合は、右側のパネル-TableLayoutPanelを使用してください
Alex Zhukovskiy

38

GroupBoxにラジオボタンを配置する方法を見てください。


1
GroupBoxはラジオボタンとはまったく無関係です。どのコンテナでもかまいません。
usr


24

WPFでRadioButtonをグループ化する概念が気に入っています。GroupName相互に排他的なRadioButtonコントロールを指定するプロパティがあります(http://msdn.microsoft.com/de-de/library/system.windows.controls.radiobutton.aspx)。

そこで、この機能をサポートするWinFormsの派生クラスを作成しました。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Windows.Forms.VisualStyles;
using System.Drawing;
using System.ComponentModel;

namespace Use.your.own
{
    public class AdvancedRadioButton : CheckBox
    {
        public enum Level { Parent, Form };

        [Category("AdvancedRadioButton"),
        Description("Gets or sets the level that specifies which RadioButton controls are affected."),
        DefaultValue(Level.Parent)]
        public Level GroupNameLevel { get; set; }

        [Category("AdvancedRadioButton"),
        Description("Gets or sets the name that specifies which RadioButton controls are mutually exclusive.")]
        public string GroupName { get; set; }

        protected override void OnCheckedChanged(EventArgs e)
        {
            base.OnCheckedChanged(e);

            if (Checked)
            {
                var arbControls = (dynamic)null;
                switch (GroupNameLevel)
                {
                    case Level.Parent:
                        if (this.Parent != null)
                            arbControls = GetAll(this.Parent, typeof(AdvancedRadioButton));
                        break;
                    case Level.Form:
                        Form form = this.FindForm();
                        if (form != null)
                            arbControls = GetAll(this.FindForm(), typeof(AdvancedRadioButton));
                        break;
                }
                if (arbControls != null)
                    foreach (Control control in arbControls)
                        if (control != this &&
                            (control as AdvancedRadioButton).GroupName == this.GroupName)
                            (control as AdvancedRadioButton).Checked = false;
            }
        }

        protected override void OnClick(EventArgs e)
        {
            if (!Checked)
                base.OnClick(e);
        }

        protected override void OnPaint(PaintEventArgs pevent)
        {
            CheckBoxRenderer.DrawParentBackground(pevent.Graphics, pevent.ClipRectangle, this);

            RadioButtonState radioButtonState;
            if (Checked)
            {
                radioButtonState = RadioButtonState.CheckedNormal;
                if (Focused)
                    radioButtonState = RadioButtonState.CheckedHot;
                if (!Enabled)
                    radioButtonState = RadioButtonState.CheckedDisabled;
            }
            else
            {
                radioButtonState = RadioButtonState.UncheckedNormal;
                if (Focused)
                    radioButtonState = RadioButtonState.UncheckedHot;
                if (!Enabled)
                    radioButtonState = RadioButtonState.UncheckedDisabled;
            }

            Size glyphSize = RadioButtonRenderer.GetGlyphSize(pevent.Graphics, radioButtonState);
            Rectangle rect = pevent.ClipRectangle;
            rect.Width -= glyphSize.Width;
            rect.Location = new Point(rect.Left + glyphSize.Width, rect.Top);

            RadioButtonRenderer.DrawRadioButton(pevent.Graphics, new System.Drawing.Point(0, rect.Height / 2 - glyphSize.Height / 2), rect, this.Text, this.Font, this.Focused, radioButtonState);
        }

        private IEnumerable<Control> GetAll(Control control, Type type)
        {
            var controls = control.Controls.Cast<Control>();

            return controls.SelectMany(ctrl => GetAll(ctrl, type))
                                      .Concat(controls)
                                      .Where(c => c.GetType() == type);
        }
    }
}

3
これは、TableLayoutPanel内のグループにRadioButtonが必要な状況で役に立ちました。ありがとうございます。
pelazem 2014年

このクラスを自分のフォームの1つに使用しようとしていますが、コントロールをグループボックスの上に表示するのに問題があります(グループボックスのタイトルのように)。これは、最上位のラジオボタンとして機能することを意図しています(id est、このラジオボタンのグループはフォームのルートにあるパネルで、グループボックスは兄弟です)。このクラスを使用してそれを達成する方法のコード例はありますか?
Agi Hammerthief 2017

IEnumerable<Control> arbControls = null;ダイナミックを使う代わりに書いてみます。varマスクは、さらに、その私は通常私のコードでのみ、明示的な型を使用する理由です。それ以外の場合は、非常に良い仕事で、これを共有してくれてありがとう!1
sɐunıɔןɐqɐp

11

パネルなしのラジオボタン

public class RadioButton2 : RadioButton
{
   public string GroupName { get; set; }
}

private void RadioButton2_Clicked(object sender, EventArgs e)
{
    RadioButton2 rb = (sender as RadioButton2);

    if (!rb.Checked)
    {
       foreach (var c in Controls)
       {
           if (c is RadioButton2 && (c as RadioButton2).GroupName == rb.GroupName)
           {
              (c as RadioButton2).Checked = false;
           }
       }

       rb.Checked = true;
    }
}

private void Form1_Load(object sender, EventArgs e)
{
    //a group
    RadioButton2 rb1 = new RadioButton2();
    rb1.Text = "radio1";
    rb1.AutoSize = true;
    rb1.AutoCheck = false;
    rb1.Top = 50;
    rb1.Left = 50;
    rb1.GroupName = "a";
    rb1.Click += RadioButton2_Clicked;
    Controls.Add(rb1);

    RadioButton2 rb2 = new RadioButton2();
    rb2.Text = "radio2";
    rb2.AutoSize = true;
    rb2.AutoCheck = false;
    rb2.Top = 50;
    rb2.Left = 100;
    rb2.GroupName = "a";
    rb2.Click += RadioButton2_Clicked;
    Controls.Add(rb2);

    //b group
    RadioButton2 rb3 = new RadioButton2();
    rb3.Text = "radio3";
    rb3.AutoSize = true;
    rb3.AutoCheck = false;
    rb3.Top = 80;
    rb3.Left = 50;
    rb3.GroupName = "b";
    rb3.Click += RadioButton2_Clicked;
    Controls.Add(rb3);

    RadioButton2 rb4 = new RadioButton2();
    rb4.Text = "radio4";
    rb4.AutoSize = true;
    rb4.AutoCheck = false;
    rb4.Top = 80;
    rb4.Left = 100;
    rb4.GroupName = "b";
    rb4.Click += RadioButton2_Clicked;
    Controls.Add(rb4);
}


5

GroupBoxただし、グループボックスだけでなく、PanelsSystem.Windows.Forms.Panel)も使用できます。

  • これは、インターネットプロトコルバージョン4の設定ダイアログを設計するときに非常に便利です(pc(windows)で確認すると、動作を理解できます)。

5

共有コンテナ内のすべてのラジオボタンは、デフォルトで同じグループにあります。つまり、そのうちの1つをチェックすると、他のチェックボックスはオフになります。ラジオボタンの独立したグループを作成する場合は、それらをのような別のコンテナに配置するGroup Boxか、コードビハインド使用しチェック済み状態を制御する必要があります。


4

それらを1つのコンテナーに配置できない場合は、各RadioButtonのチェック状態を変更するコードを記述する必要があります

private void rbDataSourceFile_CheckedChanged(object sender, EventArgs e)
{
    rbDataSourceNet.Checked = !rbDataSourceFile.Checked;
}

private void rbDataSourceNet_CheckedChanged(object sender, EventArgs e)
{
  rbDataSourceFile.Checked = !rbDataSourceNet.Checked;
}

これにより、無限ループに入ります、、、
Michael Sandler
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.