Search Results for: Learning Xamarin.Forms

Learning Xamarin.Forms – Part 5: ListView

In Part 4 of this series we created a new Master/Detail project.  In this part, we’re going to zero in on one view on one page… but what a view it is! This series is based on my  Pluralsight Course: Building Your … Continue reading

Posted in Essentials, Xamarin, XAML | Tagged , | 2 Comments

Learning Xamarin.Forms – Part 4: Layout and Views

This series begins with an overview here This series is based on my Pluralsight Course: Building Your First Mobile Application with Xamarin.Forms and Visual Studio 2017 Layout Xamarin.Forms has a number of “Layout” controls that can contain other controls (views) and help … Continue reading

Posted in Essentials | 1 Comment

Learning Xamarin.Forms – Part 3: Navigation

This series begins with an overview here In Part 2 we considered MVVM This series is based on my Pluralsight Course: Building Your First Mobile Application with Xamarin.Forms and Visual Studio 2017 Navigation Just about any serious mobile application will have … Continue reading

Posted in Essentials, Xamarin | Tagged , | 1 Comment

Learning Xamarin.Forms – Part 2: MVVM

I think many would argue that discussing MVVM is premature in part 2 of a discussion on Xamarin.Forms.  My counter argument is that it is important to start out with best practices, and MVVM is the pattern of choice for … Continue reading

Posted in Essentials, Xamarin | Tagged , | 1 Comment

Learning Xamarin.Forms – Part 1 – Overview

About this series This post begins a series in which I will introduce Xamarin.Forms, put it in context and then teach all you need to know to go from absolute beginner to intermediate/advanced Xamarin.Forms programmer.  I assume no prior mobile … Continue reading

Posted in Essentials, Xamarin | Tagged , , | 3 Comments

Learning .NET MAUI – Part 9

Once again, we’ll pick up where we left off. But today we’re in for some big changes. Let’s add an IsBusy property to use in the MainViewModel. We’ll use the same trick we did with _resultList: Let’s further assume you … Continue reading

Posted in Essentials | Tagged , | Leave a comment

Learning .NET MAUI – Part 6

I’m going to start off where we were at the end of Part 5, but this time instead of creating two labels (for State and Zip) I’m going to create one label with MultiBinding: <Label VerticalOptions=”Center”> <Label.Text> <MultiBinding StringFormat=”{}{0} | … Continue reading

Posted in Essentials | Tagged , , | Leave a comment

Learning .NET MAUI – Part 3

Our app will spring to life in AppShell.xaml. We’ll be putting a few additional things there, but key for now is the ShellContent element As you can see there are three attributes: the Title, the ContentTemplate and the Route. The … Continue reading

Posted in .NET MAUI, C#, Essentials, Maui, Programming | Tagged | Leave a comment

Learning .NET MAUI Part 2

As noted in part 0, I assume you are a Xamarin.Forms/C# programmer, familiar with Visual Studio. This series is not about converting your existing Xamarin.Forms apps; rather it is about converting your brain to MAUI. Since I’m learning as I’m going, your mileage … Continue reading

Posted in Essentials | Tagged , | Leave a comment

Learning .NET Maui Part 1

As noted in part 0, I assume you are a Xamarin.Forms/C# programmer, familiar with Visual Studio. This series is not about converting your existing Xamarin.Forms apps; rather it is about converting your brain to MAUI. Since I’m learning as I’m … Continue reading

Posted in Essentials | Tagged , | Leave a comment

Learning .Net Maui – Posting 0

I’m going to start a serious attempt to upgrade my skills from Xamarin.Forms to Maui. I’m not sure how difficult this will be, but I’m starting with James Montemagno’s excellent video/code course for beginners. Unfortunate for me, and perhaps for … Continue reading

Posted in C#, Maui | Tagged | Leave a comment

Advanced Databinding: Part 0 – BASICS

In the ugly old days, if you had data that you wanted to display you would put the data into a variable and then write some code to copy that data to a control on your page. If the data … Continue reading

Posted in Essentials | Tagged , , | Leave a comment