Click here to Skip to main content
15,795,712 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? Pin
Gerry Schmitz15-Oct-21 11:03
mveGerry Schmitz15-Oct-21 11:03 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? Pin
Member 1539432816-Oct-21 2:40
Member 1539432816-Oct-21 2:40 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? Pin
Eddy Vluggen16-Oct-21 4:13
professionalEddy Vluggen16-Oct-21 4:13 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? Pin
Gerry Schmitz16-Oct-21 10:46
mveGerry Schmitz16-Oct-21 10:46 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? --- Solved Pin
Member 1539432817-Oct-21 5:44
Member 1539432817-Oct-21 5:44 
GeneralRe: How do I create xy plots with WPF APP (.NET Framework)? Pin
Gerry Schmitz17-Oct-21 12:30
mveGerry Schmitz17-Oct-21 12:30 
Question(xaml, wpf) ScrollViewer Binding confusion (beginner) Pin
Maximilien7-Oct-21 9:46
Maximilien7-Oct-21 9:46 
AnswerRe: (xaml, wpf) ScrollViewer Binding confusion (beginner) Pin
Richard Deeming7-Oct-21 22:47
mveRichard Deeming7-Oct-21 22:47 
Already answered in the C# forum:
Re: (xaml, wpf) ScrollViewer Binding confusion (beginner) - C# Discussion Boards[^]
C#
private void Containers_OnTargetUpdated(object? sender, DataTransferEventArgs e)
{
    var current = sender as DependencyObject;
    var scroller = current as ScrollViewer;
    while (scroller == null && current != null)
    {
        current = VisualTreeHelper.GetParent(current);
        scroller = current as ScrollViewer;
    }
    if (scroller != null)
    {
        scroller.ScrollToHome();
    }
}




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

AnswerRe: (xaml, wpf) ScrollViewer Binding confusion (beginner) Pin
Gerry Schmitz8-Oct-21 10:57
mveGerry Schmitz8-Oct-21 10:57 
QuestionCurrency Entry Issue Pin
Kevin Marois7-Oct-21 8:23
professionalKevin Marois7-Oct-21 8:23 
AnswerRe: Currency Entry Issue Pin
Richard Deeming7-Oct-21 22:44
mveRichard Deeming7-Oct-21 22:44 
GeneralRe: Currency Entry Issue Pin
Kevin Marois8-Oct-21 7:03
professionalKevin Marois8-Oct-21 7:03 
QuestionQuick MVVM Design Question Pin
Kevin Marois5-Oct-21 8:34
professionalKevin Marois5-Oct-21 8:34 
AnswerRe: Quick MVVM Design Question Pin
Mycroft Holmes5-Oct-21 14:39
professionalMycroft Holmes5-Oct-21 14:39 
AnswerRe: Quick MVVM Design Question Pin
Pete O'Hanlon5-Oct-21 21:26
subeditorPete O'Hanlon5-Oct-21 21:26 
GeneralRe: Quick MVVM Design Question Pin
Richard Deeming5-Oct-21 22:34
mveRichard Deeming5-Oct-21 22:34 
GeneralRe: Quick MVVM Design Question Pin
Gerry Schmitz6-Oct-21 10:52
mveGerry Schmitz6-Oct-21 10:52 
AnswerRe: Quick MVVM Design Question Pin
#realJSOP10-Nov-21 0:37
mve#realJSOP10-Nov-21 0:37 
QuestionPage/Frame Pin
michaelbarb23-Sep-21 11:12
michaelbarb23-Sep-21 11:12 
AnswerRe: Page/Frame Pin
Gerry Schmitz24-Sep-21 13:48
mveGerry Schmitz24-Sep-21 13:48 
GeneralRe: Page/Frame Pin
michaelbarb24-Sep-21 14:24
michaelbarb24-Sep-21 14:24 
QuestionStuck with Weird Exceptions Pin
Kevin Marois7-Sep-21 14:51
professionalKevin Marois7-Sep-21 14:51 
AnswerRe: Stuck with Weird Exceptions Pin
Richard Deeming7-Sep-21 22:28
mveRichard Deeming7-Sep-21 22:28 
GeneralRe: Stuck with Weird Exceptions Pin
Kevin Marois8-Sep-21 5:58
professionalKevin Marois8-Sep-21 5:58 
QuestionDisable ComboBox Hyperlinks Pin
Kevin Marois19-Aug-21 13:43
professionalKevin Marois19-Aug-21 13:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.