Horje
wpf scoll to on new item datagrtid Code Example
wpf scoll to on new item datagrtid
if (mainDataGrid.Items.Count > 0)
{
    var border = VisualTreeHelper.GetChild(mainDataGrid, 0) as Decorator;
    if (border != null)
    {
        var scroll = border.Child as ScrollViewer;
        if (scroll != null) scroll.ScrollToEnd();
    }
}




Csharp

Related
c# todatatable nullable Code Example c# todatatable nullable Code Example
a infinite loop in text box update ui c# Code Example a infinite loop in text box update ui c# Code Example
how to do Employing defensive code in the UI to ensure that the current frame is the most top level window in c# Code Example how to do Employing defensive code in the UI to ensure that the current frame is the most top level window in c# Code Example
weakreference tryget c# Code Example weakreference tryget c# Code Example
how to get odd saturday in a month in c# Code Example how to get odd saturday in a month in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10