Xamarin.Forms App return data to calling App

前端 未结 2 1701
滥情空心
滥情空心 2021-01-17 02:52

So, either I am asking incorrectly, or it isn\'t possible, let\'s see which...

If my app (Xamarin.Forms) is launched from another app, in order to get a url from my

2条回答
  •  借酒劲吻你
    2021-01-17 03:45

    You can use static public class to save and access results like:

    public static class StaticClass
    {
         public static int Result;
    }
    

提交回复
热议问题