About 2,540,000 results
Open links in new tab
  1. What is the difference between WPF and WinForms?

    Aug 26, 2009 · WPF is the current platform for developing Windows desktop applications. It is a modern, advanced, hardware accelerated framework for developing applications that maintain …

  2. WPF WebBrowser control - how to suppress script errors?

    I found a similar question here: How do I suppress script errors when using the WPF WebBrowser control? But non of those solutions work for me. I need to stop the popups from appearing as i …

  3. Set background color of WPF Textbox in C# code - Stack Overflow

    Jun 11, 2009 · How can I change the background and foreground colors of a WPF Textbox programmatically in C#?

  4. c# - Select folder dialog WPF - Stack Overflow

    Oct 24, 2010 · WPF look & feel, this dialog must look like part of a modern application designed for Windows Vista/7 and not Windows 2000 or even Win9x. As I understand, until 2010 (.Net …

  5. c# - Project structure for MVVM in WPF - Stack Overflow

    What is the project structure you end up with when using MVVM in WPF? From the tutorials I saw now, they usually have folders: Model, ViewModel and View. In Model you put classes like …

  6. c# - Setting WPF image source in code - Stack Overflow

    I'm trying to set a WPF image's source in code. The image is embedded as a resource in the project. By looking at examples I've come up with the below code. For some reason it doesn't …

  7. How to bind multiple values to a single WPF TextBlock?

    May 25, 2016 · I'm currently using the TextBlock below to bind the value of a property named Name: <TextBlock Text="{Binding Name}" /> Now, I want to bind another property named …

  8. wpf - How can I define a variable in XAML? - Stack Overflow

    I have the following two buttons in XAML: <Button Content="Previous" Margin="10,0,0,10"/> <Button Content="Next" Margin="0,0,10,10"/> How can I define "10" to be a ...

  9. Get selected value from combo box in C# WPF - Stack Overflow

    Dec 4, 2010 · Get selected value from combo box in C# WPF Asked 14 years, 11 months ago Modified 1 year, 5 months ago Viewed 449k times

  10. Use StringFormat to add a string to a WPF XAML binding

    I have a WPF 4 application that contains a TextBlock which has a one-way binding to an integer value (in this case, a temperature in degrees Celsius). The XAML looks like this: &lt;TextBlock …