“Recarregue o UserContol WPF” Respostas de código

Recarregue o UserContol WPF

public static class ExtensionMethods
{
    private static readonly Action EmptyDelegate = delegate { };
    public static void Refresh(this UIElement uiElement)
    {
        uiElement.Dispatcher.Invoke(DispatcherPriority.Render, EmptyDelegate);
    }
}

//call on any UI Element like so:
//element.Refresh();
Solstice

Recarregue o UserContol WPF


private void Button_RefreshControls_Click(object sender, RoutedEventArgs e)
{
    ShowCustomerControl.Refresh();
}

Panicky Pony

Respostas semelhantes a “Recarregue o UserContol WPF”

Perguntas semelhantes a “Recarregue o UserContol WPF”

Procure respostas de código populares por idioma

Procurar outros idiomas de código