About 2,550,000 results
Open links in new tab
  1. 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

  2. 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 …

  3. How to get controls in WPF to fill available space?

    Aug 30, 2008 · Some WPF controls (like the Button) seem to happily consume all the available space in its' container if you don't specify the height it is to have. And some, like the ones I …

  4. WPF What is the correct way of using SVG files as icons in WPF

    WPF What is the correct way of using SVG files as icons in WPF Asked 15 years, 3 months ago Modified 2 years, 9 months ago Viewed 196k times

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

    May 24, 2016 · When we try to show the Window which is closed, we will get the following exception. "Cannot set Visibility or call Show, ShowDialog, or …

  6. Execute task in background in WPF application - Stack Overflow

    possible duplicate of How to execute task in the wpf background while able to provide report and allow cancellation?

  7. Window vs Page vs UserControl for WPF navigation?

    Window is like Windows.Forms.Form, so just a new window Page is, according to online documentation: Encapsulates a page of content that can be navigated to and hosted by …

  8. 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 …

  9. How do I get a TextBox to only accept numeric input in WPF?

    Add a preview text input event. Like so: <TextBox PreviewTextInput="PreviewTextInput" />. Then inside that set the e.Handled if the text isn't allowed. e.Handled = !IsTextAllowed(e.Text); I use …

  10. wpf - How to make overlay control above all other controls?

    Mar 27, 2011 · I need to make a control appear above all other controls, so it will partially overlay them.