0

DataGridViewComboBoxCell のさまざまな項目のフォントの色を設定するにはどうすればよいですか? たとえば、アイテムが 10 個ある場合、アイテム 3 と 5 を赤にし、残りを黒のままにするにはどうすればよいでしょうか?

編集:これはwinformアプリケーション用であり、DataGridViewComboBoxはデータバインドされていません

edit2 : 多分私は編集コントロール表示でここでそれを行うことができますか?

   private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
   {
            if (dataGridView1.Columns[dataGridView1.CurrentCell.ColumnIndex].Name == "MyCombo")
            {

                DataGridViewComboBoxCell comboCell = (DataGridViewComboBoxCell)dataGridView1.CurrentCell;

                for (int i = 0; i < comboCell.Items.Count; ++i)
                {
                    string contract = comboCell.Items[i].ToString();
                    if (contract.ToUpper().Contains("NO"))
                    {
                        // can I set this item have a red font color???
                    }

                }
}
4

2 に答える 2

1

行の場合は以下を行います-OnRowDataBoundイベントをフックしてから処理を行います

ASPX (グリッド):

    <asp:.... OnRowDataBound="RowDataBound"..../>

コードビハインド:

    protected void RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowIndex == -1)
        {
            return;
        }

        if(e.Row.Cells[YOUR_COLUMN_INDEX].Text=="NO"){
             e.Row.BackColor=Color.Red;   
        }
    }

WinForms の場合:

hook the **DataBindingComplete** event and do stuff in it:

     private void dataGridView1_DataBindingComplete(object sender, 
                       DataGridViewBindingCompleteEventArgs e)
    {
        if (e.ListChangedType != ListChangedType.ItemDeleted)
        {
            DataGridViewCellStyle red = dataGridView1.DefaultCellStyle.Clone();
            red.BackColor=Color.Red;

            foreach (DataGridViewRow r in dataGridView1.Rows)
            {
                if (r.Cells["FollowedUp"].Value.ToString()
                       .ToUpper().Contains("NO"))
                {
                    r.DefaultCellStyle = red;
                }
            }
        }
    }
于 2012-02-21T22:17:13.840 に答える
0

ComboBox 項目を手動で描画する必要があります。次のことを試してください (この MSDN の投稿に基づいて):

private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
    // Note this assumes there is only one ComboBox column in the grid!
    var comboBox = e.Control as ComboBox;
    if (comboBox == null)
        return;

    comboBox.DrawMode = DrawMode.OwnerDrawFixed;
    comboBox.DrawItem -= DrawGridComboBoxItem;
    comboBox.DrawItem += DrawGridComboBoxItem;
}

private void DrawGridComboBoxItem(object sender, DrawItemEventArgs e)
{
    e.DrawBackground();

    if (e.Index != -1)
    {
        // Determine which foreground color to use
        var itemValue = actionsColumn.Items[e.Index] as string;
        bool isNo = String.Equals("no", itemValue, StringComparison.CurrentCultureIgnoreCase);
        Color color = isNo ? Color.Red : e.ForeColor;

        using (var brush = new SolidBrush(color))
            e.Graphics.DrawString(itemValue, e.Font, brush, e.Bounds);
    }

    e.DrawFocusRectangle();
}
于 2013-05-15T09:41:16.327 に答える