Search Results

3
votes
3answers
211 views

How to propagate errors & exceptions that occur during WPF data binding?

Every so often I find that I have accidentally broken data binding in my application. Either by renaming a property and not renaming it in the XAML or by a property throwing an exception for some …
0
votes
1answer
49 views

What is the best way to implement the graphics for a selected item in a WPF user control?

I have implemented a few different WPF user controls. In doing so I have also implemented a few different ways of implementing the graphics for when an item is selected. I want to find out …
0
votes
1answer
147 views

How to derive a new class from DataTemplate and then use it in place of DataTemplate?

How do I derive a new class from DataTemplate and then use it in place of DataTemplate? For example, in C#: public class DerivedDataTemplate : DataTemplate { } …
0
votes
3answers
241 views

How to dynamically populate a WPF grid using data binding?

I am looking for a way to populate a single grid using data bindings. The way I do this at the moment is by using an ItemsControl where each item is represented as a Grid with the columns t …
0
votes
1answer
76 views

Why is the ScrollViewer ScrollChanged event only raised after a small delay following a call to ScrollToVerticalOffset/ScrollToHorizontalOffset?

I was working with ScrollViewer and I noticed that when calling ScrollToHorizontalOffset or ScrollToVerticalOffset that this appears to have a delayed effect in raising the ScrollChanged event. I …
0
votes
1answer
39 views

Is there a way to determine the width and height of a WPF Window before showing it?

I am trying to center a WPF Window on the current position of the mouse cursor. Getting the mouse coordinates is no problem, but I need to determine the width and height of the window in order to …
0
votes

How to propagate errors & exceptions that occur during WPF data binding?

After some procrastination I finally set about coding a solution to my original issue. My solution uses a custom trace listener (originally suggested by John) that logs to an output window. …
1
vote

XAML Alternatives

This might be something to watch. There is nothing to download from the website yet though. D'oh: The Super Productive Windows GUI Language …
0
votes

Is there a WPF Cheat Sheet outhere?

Refcardz have a free WPF cheat sheet. You can view it online. To download it as a PDF you need to register with the site. …
1
vote

Execute CMD command from code

As mentioned by the other answers you can use: Process.Start("notepad somefile.txt"); However, there is another way. You can instance a Process object …