Posts by Bertuzzi • 148 points
9 posts
-
0
votes1
answer254
viewsA: Images disappearing from my application using Xamarin Forms
I’ll give you a hint of a component that I always use for images in Xamarin Forms : Ffimageloading . It is possible to use cache and optimize image loading.…
-
0
votes1
answer147
viewsA: How to integrate an App to an ASP.NET Webservice (ASMX) via Xamarin?
Basically, you would use as in any C application#. However follows a more specific example of the Xamarin itself : https://developer.xamarin.com/guides/xamarin-forms/cloud-services/consuming/asmx/…
-
0
votes1
answer105
viewsA: Install Restsharp in PCL projects Xamarin.Forms
Try Changing PCL Profile. It may be that the Restsharp version is not compatible with PCL. I suggest using the alternatives : Http Client or Refit. Usually these are my options for REST.…
-
2
votes1
answer335
viewsA: Load excel data on screen
If you need to extract the information from an Excel I suggest you take a look at the library https://www.nuget.org/packages/EPPlus/ . It has manipulations for Excel, both to extract data and to…
-
0
votes1
answer49
viewsA: How to use Segmented Controls in Xamarin Forms
Galley, I ended up solving with Freshessentials. ( https://www.nuget.org/packages/FreshEssentials/) . It installs controls for Xamarin Forms that have not yet been implemented by Microsoft.…
-
0
votes1
answer49
viewsQ: How to use Segmented Controls in Xamarin Forms
Galley, A help, I need to use a type of Segmented Controls in my Xamarin Forms. However, it does not exist. I saw that to use Native by platform, but found no example or documentation guide to it.…
-
1
votes1
answer199
viewsA: How to Get Selected Jstree Root
I got, If someone needs these "square" nodes are called . jstree-Undetermined. To catch them is enough : var checked_ids = []; $("#arvore").find(".jstree-undetermined").each( function (i, element) {…
-
1
votes1
answer199
viewsQ: How to Get Selected Jstree Root
Galley, good afternoon, a doubt, I’m using the Jstree and I need some help. When I select the child nodes : I can get them through the script : $('#arvore').jstree(true).get_selected(). But I can’t…
-
9
votes2
answers93
viewsQ: Method equivalent to Biginteger.and() in C#
I need to convert the java code below to C#: public static boolean verificaPermissao(BigInteger perm1, BigInteger perm) { if (perm1 == null || perm == null || (perm1.equals(BigInteger.ZERO) ||…