数据集中数据的颜色变化

时间:2013-08-02 07:07:07

标签: c# asp.net mysql

我一直致力于一个包含类别和项目的项目,我想要的是我想要更改项目的前景色,以便其他人可以轻松识别项目,除此之外我已将斜体应用于文本它工作得很好但我怎么能应用forecolor和字体大小.....所以我需要帮助...

    for (int iRow = 0; iRow < dsDetails.Tables[0].Rows.Count; iRow++)
    {
        DataRow[] drCatFilter;
        // Get the dish item name for the current mapping
        drCatFilter = dsCommon.Tables[0].Select("ID = '" + dsDetails.Tables[0].Rows[iRow]["catmappingid"].ToString() + "'");
        // Create the dish item
        item = new MenuItem();
        item.Value = dsDetails.Tables[0].Rows[iRow]["id"].ToString();
        item.Text = ("<i>"+dsDetails.Tables[0].Rows[iRow]["name"].ToString()+"</i>";

        ![As the image shows category(food,beverages etc.) and items(Dosa,beer etc) i need to change the forecolor of itemms][1]

    [1]: http://i.stack.imgur.com/3ljsp.png

1 个答案:

答案 0 :(得分:0)

您是否尝试设置MenuItem的“Foreground”和“FontSize”属性?

    item = new MenuItem();
    item.Value = dsDetails.Tables[0].Rows[iRow]["id"].ToString();
    item.Text = ("<i>"+dsDetails.Tables[0].Rows[iRow]["name"].ToString()+"</i>";
    item.Foreground = "something"
    item.Fontsize = "something"

或者我理解你的问题错了吗?