Posts by Gustavo Freitas • 45 points
4 posts
-
3
votes1
answer54
viewsQ: Doubt with XML file creation
I have a program that creates an XML file using Xmltextwriter, follow the example public static void testeGerarXml() { using (var xml = new XmlTextWriter(@"c:\Gustavo\teste.xml", Encoding.UTF8)) {…
-
0
votes1
answer693
viewsQ: Xamarin has some limitation for creating APP for Android
I’m starting to study mobile programming, specifically Android at the moment, and I’m having a question. I started studying the Android Studio which uses the JAVA language, but it is also possible…
-
0
votes1
answer54
viewsA: Current size Textblock Runtime
In the link that the extension passed me I found the following piece of code that worked. I didn’t understand very well how it works but it worked. TextBlock txtMensagem = new TextBlock();…
-
0
votes1
answer54
viewsQ: Current size Textblock Runtime
Guys, I have a question that is the following. I am creating a Textblock at runtime with the following code: TextBlock txtMensagem = new TextBlock(); txtMensagem.Text = texto.Trim();…