更改DataGridViewButtonColumn中按钮的文本值

时间:2018-01-24 19:39:14

标签: c# datagridviewcolumn datagridviewbuttoncolumn

每次点击按钮时,我都试图更改DataGridViewButtonColumn中按钮的文本。

我像这样定义列:

DataGridViewButtonColumn sitemapButtonColumn = new DataGridViewButtonColumn
{
     Name = "Process",
     Text = "Start",
     UseColumnTextForButtonValue = true,
     DataPropertyName = "Process",
     FillWeight = 7,
     Width = 75
};
dg_list.CellContentClick += dg_list_StartStopProcessClick;

现在,单击单元格后控制事件的功能是:

private void dg_list_StartStopProcessClick(object sender, DataGridViewCellEventArgs e)
        {
            var senderGrid = (DataGridView)sender;
            if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn &&
                e.RowIndex >= 0 &&
                e.ColumnIndex == dg_lista_blogs_automatizacion.Columns["Process"].Index)
            {
                if (senderGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Start")
                {
                    senderGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "Stop";
                    senderGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Style.BackColor = Color.OrangeRed;
                }
                else
                {
                    senderGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "Start";
                    senderGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Style.BackColor = Color.White;
                }
            }
        }

嗯,这不起作用!

我一直在使用Google搜索并找到一条将UseColumnTextForButtonValue修改为false的帖子,设置新文本值并再次设置为true。

问题在于我无法弄清楚如何在事件中访问 UseColumnTextForButtonValue 属性。

任何帮助?

1 个答案:

答案 0 :(得分:0)

基本上,我可以在 DataGridViewButtonColumn 实例中解决将 UseColumnTextForButtonValue 设置为false的问题。

UseColumnTextForButtonValue 设置为false时,必须在其他情况下启动按钮的文本值。所以,我使用 CellFormatting 事件根据我想要的状态设置文本值。

private void dg_list_auto_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
        {
            if (e!=null && e.ColumnIndex==0)
            {
                dg_list_auto.Rows[e.RowIndex].Cells[0].Value = dg_list_auto[e.RowIndex].flag_sitemap_started?"Stop":"Start";
                dg_list_auto.Rows[e.RowIndex].Cells[0].Style.BackColor = dg_list_auto[e.RowIndex].flag_sitemap_started ? Color.IndianRed: Color.GreenYellow;
            }
        }