0
votes
0answers
42 views

Extend templated window main menu

I am making a template window design in WPF for future reuse. I make a lot of small dedicated tools for the project I am working on and would laike to have a consistent feel for the suite. So far I am ...
1
vote
3answers
653 views

Updating UI from Multiple background threads

The issue here is a bit abstract. We all know, for a background thread to update some UI element. Dispatcher.Invoke() is the only option (Is it?). However, Dispatcher.Invoke() in itself delegates ...
2
votes
2answers
1k views

How to re-open the closed window?

i've seen so many samples that in order to open closed window i should hide the window in closing event, but this is not fair for me if i close window in middle of my work and again open same window ...
5
votes
2answers
4k views

How can I assign the 'Close on Escape-key press' behavior to all WPF windows within a project?

Is there any straightforward way of telling the whole WPF application to react to Escape key presses by attempting to close the currently focused widow? It is not a great bother to manually setup the ...