Do code after OnNavigatedTo

前端 未结 3 671
孤街浪徒
孤街浪徒 2021-01-24 04:03

I Have Code get IdUsers From Other Page

String IdUsers;

        public Main_Wallets_Page()
        {
            InitializeComponent();            
                     


        
3条回答
  •  既然无缘
    2021-01-24 04:56

    If this value was initialized, you can store it in application isolated storage. Then, when constructor is called, you can read it from there. In this case value of user ID will be initialized and MessageBox won't show you NULL.

提交回复
热议问题