I was wondering what the best practice is for sending variables like \'selectedItem\' and so on between pages in UWP? Is it a good idea to just create a static global variab
Well in fact if you use MVVM approach you have all necessary info in ModelView class(es). In case you do not use MVVM just use a singleton class or even a static global class.