にコントロールがあることは知っていWebForms
ますが、 のRadioButtonList
コントロールが見つかりませんWinForms
。一度に 1 つしか選択できないように、3 つの RadioButton をグループ化する必要があります。コードでこれを行う必要があることがわかりましたが、これは面倒です。RadioButtonList
どこかが見えないだけですか、それとも実際には存在しないのWinForms
ですか?
3 に答える
ラジオ ボタンをグループ化するだけの場合は、それらをコンテナーに配置するだけで十分です。グループのように機能しますが、ComboBox
またはListBox
またはがどのように機能するかのようなデータ バインディングが必要CheckedListBox
な場合は、RadioButtonList
コントロールが必要です。
RadioButtonList
Windows フォームには組み込みのコントロールがありません。フォームを派生さListBox
せ、オーナー描画やラジオ ボタンの描画を自分で行うことで、独自のコントロールを作成できます。これもCheckedListBox
作られている方法です。
このように、コントロールはデータ バインディングをサポートし、、、などListBox
ののすべての機能を利用できます。たとえば、次のように簡単に使用できます。DataSource
SelectedValue
DisplayMember
ValueMember
this.radioButtonList1.DataSource = peopleTable;
this.radioButtonList1.DisplayMember = "Name";
this.radioButtonList1.ValueMember= "Id";
または、たとえば の場合enum
、単に次のようにします。
this.radioButtonList1.DataSource = Enum.GetValues(typeof(DayOfWeek));
下の画像では、2 番目RadioButtonList
は設定によって無効になっていますEnabled = false;
。
また、コントロールは右から左もサポートしています。
複数列もサポートしています。
ラジオボタンリスト
コントロールのソースコードはこちら。ListBox
アイテムを追加するか、データバインディングを使用して/使用せずにデータソースを設定することで、通常のように使用できます。
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Windows.Forms.VisualStyles;
public class RadioButtonList : ListBox
{
Size s;
public RadioButtonList()
{
this.DrawMode = DrawMode.OwnerDrawFixed;
using (var g = Graphics.FromHwnd(IntPtr.Zero))
s = RadioButtonRenderer.GetGlyphSize(
Graphics.FromHwnd(IntPtr.Zero), RadioButtonState.CheckedNormal);
}
protected override void OnDrawItem(DrawItemEventArgs e)
{
var text = (Items.Count > 0) ? GetItemText(Items[e.Index]) : Name;
Rectangle r = e.Bounds; Point p;
var flags = TextFormatFlags.Default | TextFormatFlags.NoPrefix;
var selected = (e.State & DrawItemState.Selected) == DrawItemState.Selected;
var state = selected ?
(Enabled ? RadioButtonState.CheckedNormal :
RadioButtonState.CheckedDisabled) :
(Enabled ? RadioButtonState.UncheckedNormal :
RadioButtonState.UncheckedDisabled);
if (RightToLeft == System.Windows.Forms.RightToLeft.Yes)
{
p = new Point(r.Right - r.Height + (ItemHeight - s.Width) / 2,
r.Top + (ItemHeight - s.Height) / 2);
r = new Rectangle(r.Left, r.Top, r.Width - r.Height, r.Height);
flags |= TextFormatFlags.RightToLeft | TextFormatFlags.Right;
}
else
{
p = new Point(r.Left + (ItemHeight - s.Width) / 2,
r.Top + (ItemHeight - s.Height) / 2);
r = new Rectangle(r.Left + r.Height, r.Top, r.Width - r.Height, r.Height);
}
var bc = selected ? (Enabled ? SystemColors.Highlight :
SystemColors.InactiveBorder) : BackColor;
var fc = selected ? (Enabled ? SystemColors.HighlightText :
SystemColors.GrayText) : ForeColor;
using (var b = new SolidBrush(bc))
e.Graphics.FillRectangle(b, e.Bounds);
RadioButtonRenderer.DrawRadioButton(e.Graphics, p, state);
TextRenderer.DrawText(e.Graphics, text, Font, r, fc, bc, flags);
e.DrawFocusRectangle();
base.OnDrawItem(e);
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override SelectionMode SelectionMode
{
get { return System.Windows.Forms.SelectionMode.One; }
set { }
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override int ItemHeight
{
get { return (this.Font.Height + 2); }
set { }
}
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override DrawMode DrawMode
{
get { return base.DrawMode; }
set { base.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; }
}
}
ここで行われているように、GroupBox または Panel を使用して、3 つの RadioButton をグループ化できます。
複数のラジオ ボタンが同じコンテナー内にあるという単純な事実により、それらは相互に排他的になります。この動作を自分でコーディングする必要はありません。マシューの提案に従って、それらを Panel または GroupBox に入れるだけです