0

我有一个带有组合框列的 Telerik GridView,同时在这个组合框中过滤一个下拉的附加列表。

和下图一样...

在此处输入图像描述

所以我想让附加列表的字体更大。

怎么做?

4

2 回答 2

2

RadDropDownList 对其默认项目表示和自动完成建议项目使用不同的弹出窗口。这是一个演示如何更改两者字体的示例:

 void radGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
    {
        RadDropDownListEditor editor = e.ActiveEditor as RadDropDownListEditor;
        if (editor != null)
        {
            editor.DropDownStyle = RadDropDownStyle.DropDown;
            RadDropDownListEditorElement element = (RadDropDownListEditorElement)editor.EditorElement;

            element.VisualItemFormatting -= element_VisualItemFormatting;
            element.AutoCompleteSuggest.DropDownList.VisualItemFormatting -= element_VisualItemFormatting;

            //this handles the default drop down formatting - when you press the arrow key to open the drop down
            element.VisualItemFormatting += element_VisualItemFormatting;
            //this handles the suggest popup formatting
            element.AutoCompleteSuggest.DropDownList.VisualItemFormatting += element_VisualItemFormatting;
        }
    }

    void element_VisualItemFormatting(object sender, VisualItemFormattingEventArgs args)
    {
        args.VisualItem.Font = new Font("Arial", 16);
    }
于 2013-01-18T07:35:53.160 回答
0

您可以使用您的字体制作一个 CellTemplate,也可以处理该CellFormating事件并执行以下操作:

void radGridView_CellFormatting(object sender, CellFormattingEventArgs  e)      
{ 
    // For all cells under the Account Name column
    if(e.CellElement.ColumnInfo.Name == "Account Name")
    {
        if(e.CellElement.Value != null)
        {
            System.Drawing.Font newfontsize = new System.Drawing.Font(e.CellElement.Font.FontFamily.Name,20);

            for each(GridViewCellInfo cell in e.Row.Cells)
            {
                e.CellElement.Font = newfontsize;
            }

        }
    }
    // For all other cells under other columns
    else
    {
        e.CellElement.ResetValue(Telerik.WinControls.UI.LightVisualElement.Font, Telerik.WinControls.ValueResetFlags.Local);
    }
}

为“newfontsize”变量插入你想要的任何大小的字体。另请注意,在您的情况下可能不需要 else 语句,但您可以使用 ResetValue 属性将字体重置为默认值。

于 2013-01-14T14:26:57.853 回答