This question is locked. New answers and comments are not allowed.
We occured a problem when scrolling a huge amount of columns(about 180 columns). The horizonal scroll bar just can't keep up with the mouse.
The mouse is on the right side, while the scrollbar is just in orginal place. The CPU is busy processing the layout.
code fragment:
The mouse is on the right side, while the scrollbar is just in orginal place. The CPU is busy processing the layout.
code fragment:
for (int i = 0; i < format.names.Count; i++)The data columns are generated dynamiclly in code behind, not declare in markup.
{
GridViewDataColumn column = new GridViewDataColumn();
column.Header = format.names[i];
column.DataMemberBinding = new System.Windows.Data.Binding("[" + i.ToString() + "]");
this.gv.Columns.Add(column);
}
