ViewControl and ViewForm were not actually reacting when their data context changed -- fixed; view models can now delay their search for a main window (needed to synchronize change notifications to the main threads because of those shitty WinForms controls); WindowManager now accepts ...Page as a postfix for a view name, too
git-svn-id: file:///srv/devel/repo-conversion/nuwi@48 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
b405fe957b
commit
a17926d02e
8 changed files with 171 additions and 52 deletions
|
|
@ -260,6 +260,7 @@ namespace Nuclex.Windows.Forms {
|
|||
viewType = findBestMatch(
|
||||
namespaceTypes,
|
||||
viewName + "View",
|
||||
viewName + "Page",
|
||||
viewName + "Form",
|
||||
viewName + "Window",
|
||||
viewName + "Dialog",
|
||||
|
|
@ -272,6 +273,7 @@ namespace Nuclex.Windows.Forms {
|
|||
viewType = findBestMatch(
|
||||
exportedTypes,
|
||||
viewName + "View",
|
||||
viewName + "Page",
|
||||
viewName + "Form",
|
||||
viewName + "Window",
|
||||
viewName + "Dialog",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue