Hi!
On some lines using attribute "IsPinned = true"
The problem is this: when is getting a lot of strings attached, and they fill up a working area of the program that stops working scrolling, no strings attached is not visible beneath them. How can I solve this problem? I've seen similar threads in the forum, but they are not answered.
Проблема в следующем: когда закрепленных строк становится много и они заполняют собой рабочую область программы то перестает работать прокрутка, не закрепленные строки становится невидно под ними. Каким образом можно решить эту проблему? Я видел похожи темы на форуме, но они без ответа.
On some lines using attribute "IsPinned = true"
GridViewDataRowInfo dataRowInfo =
new
GridViewDataRowInfo(
this
.radGridView1.MasterView);
dataRowInfo.Cells[0].Value =
string
;
dataRowInfo.IsPinned =
true
;
radGridView1.Rows.Insert(0, dataRowInfo);
The problem is this: when is getting a lot of strings attached, and they fill up a working area of the program that stops working scrolling, no strings attached is not visible beneath them. How can I solve this problem? I've seen similar threads in the forum, but they are not answered.
Проблема в следующем: когда закрепленных строк становится много и они заполняют собой рабочую область программы то перестает работать прокрутка, не закрепленные строки становится невидно под ними. Каким образом можно решить эту проблему? Я видел похожи темы на форуме, но они без ответа.