web-dev-qa-db-ja.com

コンボボックスの高さを設定するにはどうすればよいですか?

フォームにComboBoxがあり、デフォルトの高さは21です。どのように変更しますか?

24
Gaddigesh

ComboBoxはフォントに合わせて自動サイズ調整します。これをオフにすることはできません。大きくしたい場合は、フォントを大きくしてください。

27
Hans Passant

DrawModeOwnerDrawVariableに設定します。ただし、ComboBoxをカスタマイズすると、他の問題が発生します。これを完全に行う方法のチュートリアルについては、このリンクを参照してください。

http://www.csharphelp.com/2006/09/listbox-control-in-c/

OwnerDrawVariableサンプルコードはこちら: https://msdn.Microsoft.com/en-us/library/system.windows.forms.combobox.drawitem%28v=vs.110%29.aspx

それが完了したら、コンボボックスのItemHeightプロパティを設定して、コンボボックスの有効な高さを設定する必要があります。

14
code4life

別のオプションと同様に、フォントサイズを大きくしたり、自分ですべてを描画したりする必要なしにComboBoxの高さを増やしたい場合は、単純なWin32 API呼び出しを使用して、次のように高さを増やすことができます。 :

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace Win32ComboBoxHeightExample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        [DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, Int32 wParam, Int32 lParam);
        private const Int32 CB_SETITEMHEIGHT = 0x153;

        private void SetComboBoxHeight(IntPtr comboBoxHandle, Int32 comboBoxDesiredHeight)
        {
            SendMessage(comboBoxHandle, CB_SETITEMHEIGHT, -1, comboBoxDesiredHeight);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SetComboBoxHeight(comboBox1.Handle, 150);
            comboBox1.Refresh();
        }
    }
}

結果:

enter image description here

10
Calcolat

これを行うには、DrawModeOwnerDrawVariableまたはOwnerDrawFixedに設定し、アイテムを手動で描画する必要があります。これはかなり単純なクラスで行うことができます。

この例では、フォントサイズに関係なく、ComboBoxのItemHeightプロパティを使用できます。アイテムを中央に配置できるボーナスプロパティTextAlignを投入しました。

言及する価値があることの1つは、カスタマイズを尊重するために、選択したアイテムのDropDownStyleDropDownListに設定する必要があることです。

// The standard combo box height is determined by the font. This means, if you want a large text box, you must use a large font.
// In our class, ItemHeight will now determine the height of the combobox with no respect to the combobox font.
// TextAlign can be used to align the text in the ComboBox
class UKComboBox : ComboBox
{

    private StringAlignment _textAlign = StringAlignment.Center;
    [Description("String Alignment")]
    [Category("CustomFonts")]
    [DefaultValue(typeof(StringAlignment))]
    public StringAlignment TextAlign
    {
        get { return _textAlign; }
        set
        {
            _textAlign = value;
        }
    }

    private int _textYOffset = 0;
    [Description("When using a non-centered TextAlign, you may want to use TextYOffset to manually center the Item text.")]
    [Category("CustomFonts")]
    [DefaultValue(typeof(int))]
    public int TextYOffset
    {
        get { return _textYOffset; }
        set
        {
            _textYOffset = value;
        }
    }


    public UKComboBox()
    {
            // Set OwnerDrawVariable to indicate we will manually draw all elements.
            this.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
            // DropDownList style required for selected item to respect our DrawItem customizations.
            this.DropDownStyle = ComboBoxStyle.DropDownList;
            // Hook into our DrawItem & MeasureItem events
            this.DrawItem +=
                new DrawItemEventHandler(ComboBox_DrawItem);
            this.MeasureItem +=
                new MeasureItemEventHandler(ComboBox_MeasureItem);

    }

    // Allow Combo Box to center aligned and manually draw our items
    private void ComboBox_DrawItem(object sender, DrawItemEventArgs e)
    {


        // Draw the background
        e.DrawBackground();

        // Draw the items
        if (e.Index >= 0)
        {
            // Set the string format to our desired format (Center, Near, Far)
            StringFormat sf = new StringFormat();
            sf.LineAlignment = _textAlign;
            sf.Alignment = _textAlign;

            // Set the brush the same as our ForeColour
            Brush brush = new SolidBrush(this.ForeColor);

            // If this item is selected, draw the highlight
            if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
                brush = SystemBrushes.HighlightText;

            // Draw our string including our offset.
            e.Graphics.DrawString(this.Items[e.Index].ToString(), this.Font, brush, 
                new RectangleF(e.Bounds.X, e.Bounds.Y + _textYOffset, e.Bounds.Width, e.Bounds.Height), sf);
        }

    }


    // If you set the Draw property to DrawMode.OwnerDrawVariable, 
    // you must handle the MeasureItem event. This event handler 
    // will set the height and width of each item before it is drawn. 
    private void ComboBox_MeasureItem(object sender,System.Windows.Forms.MeasureItemEventArgs e)
    {
        // Custom heights per item index can be done here.
    }

}

これで、ComboBoxのフォントと高さを個別に完全に制御できます。 ComboBoxのサイズを変更するために大きなフォントを作成する必要がなくなりました。

enter image description here

1
clamchoda

ComboBoxの項目数を調整する場合は、項目のリストを指定して、DropDownHeightの値を次のように変更できます。ここでは24を「アイテムあたりの金額」として使用しています。これは決して修正されていません。

  comboBox1.DropDownHeight = SomeList.Count * 24;
0
Gary Huckabone

ComboBoxには 'DropDownHeight'プロパティがあり、コンボボックスのプロパティウィンドウを介して、またはプログラムで変更できます。つまり.

public partial class EventTestForm : Form
{
    public EventTestForm()
    {
        InitializeComponent();
        cmbOwners.DropDownHeight = 100;
    }
0
user3068170