silverlight - Sketchflow Binding Between Screens -
I want to bind the selected elements from the grid to the text box on a separate page. Can this be done? If you mean completely different pages, then the screens are only present when your " Text box page "appears, the last" grid page "no longer exists. If this can be done then my answer will be "Do not do this" because you will be tied to each other with different pages. This is considered a bad practice. The latest Silverlight practices believe that the data should be shared through models and visual models that are longer than the screen (Silverlight MVVM pattern to see on Google). View Models are basically a place for your code-transfer, the purpose is to leave your XAML pages almost code-free. Actually you want your screen to share common data. In this case, your current selection will be included in the list of data items (you do not really care that it was the actual selection grid). The "grid-screen" data model has been ...