About 2,330,000 results
Open links in new tab
  1. How do I use WPF bindings with RelativeSource? - Stack Overflow

    How do I use RelativeSource with WPF bindings and what are the different use-cases?

  2. What is the difference between WPF and WinForms?

    Aug 26, 2009 · 1 The single most important difference between WinForms and WPF is the fact that while WinForms is simply a layer on top of the standard Windows controls (e.g. a …

  3. How can I bring a window to the front in WPF? - Stack Overflow

    The solution to bringing a WPF window to the top was actually provided to me by the same code I'm using to provide the global hotkey. A blog article by Joseph Cooney contains a link to his …

  4. wpf - The calling thread must be STA, because many UI …

    Apr 23, 2018 · If you make the call from the main thread, you must add the STAThread attribute to the Main method, as stated in the previous answer. If you use a separate thread, it needs to …

  5. c# - Example using Hyperlink in WPF - Stack Overflow

    Apr 20, 2012 · Example using Hyperlink in WPF Asked 13 years, 7 months ago Modified 1 year, 11 months ago Viewed 256k times

  6. WPF: ItemsControl with scrollbar (ScrollViewer) - Stack Overflow

    I followed this small "tutorial" on how to add a scrollbar to an ItemsControl, and it works in Designer view, but not when I compile and execute the program (only the first few items show …

  7. wpf - The name does not exist in the namespace error in XAML

    To clarify: WPF designer may report "The name XXX does not exist in the namespace...", even when the name does exist in the namespace and the project builds and runs just fine if a post …

  8. Where is the WPF Numeric UpDown control? - Stack Overflow

    Getting into the first serious WPF project. It seems like there are a lot of basic controls flat out missing. Specifically, I am looking for the Numeric UpDown control. Was there an out of band

  9. WPF: Cannot reuse window after it has been closed

    May 24, 2016 · This worked find in winforms, but in WPF I recieve this exeception: System.InvalidOperationException: Cannot set Visibility or call Show, ShowDialog, or …

  10. Window vs Page vs UserControl for WPF navigation?

    A Window object is just what it sounds like: its a new Window for your application. You should use it when you want to pop up an entirely new window. I don't often use more than one Window in …