.NET MAUI Main Page
Friday, June 3, 2022
So we’ve got the demo running on Windows and Android as well as on Mac and iOS. Next is to turn that demo into something worth using. Granted we’re only doing a simple to-do app, but the basic concepts are here to make a great application. First thing we want to do is open our application from last time. It should just be in the Open Recent area on the left when you first open Visual Studio 2022.…
Windows Template Studio
Saturday, February 15, 2020
I’m a little late to this party, but there’s an extension for Visual Studio that makes creating really nice UWP apps a snap. This extension is called the Windows Template Studio. The template studio is a wizard interface to create an UWP app with many different choices. Those choices include Project Type, Design Pattern, Pages, Features, Services, and Testing. Each of these has numerous choices making it possible to start just about any app you are looking to create.…
Difference in Margin Between HTML and XAML
Saturday, April 19, 2008
The Margin attribute of XAML elements acts different than in HTML. There are still the three ways of describing this information. The first way is simply, make all sides the same. These are identical in HTML and XAML (except that margin is capitalized in XAML). HTML XAML margin: 10px Margin=“10” XAML only allows you to work in pixels. So you do not need to mark the 10 wit"uo"uot; as you do in HTML.…