© 2026 Hashnode
TL;DR: Build a monthly weather forecast calendar in .NET MAUI Scheduler by binding weather data, customizing month cell templates, and adding temperature unit switching. Includes value converters and XAML customization for a rich UI experience. Creat...

Binding data between the UI and the component is what makes Angular powerful. Here are the main types of Data Binding in Angular 20 👇 ✅ String Interpolation 📁 1. app.component.ts import { Component } from '@angular/core'; @Component({ selector...

Introduction In .NET MAUI, we sometimes face the situation that we would like to evaluate a specific value, e.g. a property from a child object, against some logic from the ViewModel. I personally sometimes wish it were possible to bind directly to a...

TL;DR: Let’s see how to bind the SQLite database to the .NET MAUI DataGrid and perform CRUD operations. The blog covers setting up SQLite, creating a database connection, and defining the DealerInfo model. You’ll learn how to populate data, bind it t...

Data binding in Angular is a powerful way to manage the flow of data between your TypeScript logic and the UI in your templates. It allows for seamless interaction between components and their views. In this post, we’ll cover the following essential ...

RDLC (Report Definition Language Client Side) is a popular reporting format created by Microsoft that is used extensively with classic web platforms and Windows Forms. It is commonly used in conjunction with Microsoft’s Visual Studio (VS) integrated ...

Data binding is a core concept in Angular that enables communication between the component class (where the logic resides) and the view (HTML template) in the user interface. With data binding, you can synchronize data in your application model and d...
