如何在DataGridView中显示类似内容的段落?

时间:2015-05-06 06:25:06

标签: c# datagridview

我正在尝试开发一个简单的“发票”Windows应用程序。我已将文本框(项目,描述,MRP,数量等)限制为<%= @nextShiftTime=format_datetime(@user.admin_areas.next_shift_time_from_now) %>,但用户在“描述”文本框(多行)中输入的数据必须显示在DataGridView中这在我的代码中没有发生。

我的代码:

GridView

1 个答案:

答案 0 :(得分:0)

尝试使用此示例在网格视图中包装文本。

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        e.Row.Cells[1].Attributes.Add("style", "word-break:break-all;word-wrap:break-word;width:100px");
    }
  }
}