Nov 25, 2025 · 8 min read · 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...
Join discussion
Oct 25, 2025 · 5 min read · 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...
Join discussion
Jul 24, 2025 · 1 min read · Lors d’un entretien technique on m’a posé une question simple mais très pertinente : Comment afficher en temps réel dans la console la valeur saisie par l’utilisateur dans un champ de saisie Angular ? Objectif à chaque frappe de l’utilisateur, la val...
Join discussionFeb 20, 2025 · 6 min read · 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...
Join discussion
Jan 27, 2025 · 9 min read · 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...
Join discussion
Oct 10, 2024 · 4 min read · 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 ...
Join discussion
Jun 8, 2024 · 4 min read · What Is Data Binding? Data binding in Angular is a feature that allows automatic synchronization of data between the component class and the view, ensuring that any changes made in one are instantly reflected in the other. It simplifies the developme...
Join discussion
Feb 5, 2024 · 10 min read · 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 ...
Join discussion
Jan 21, 2024 · 4 min read · 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...
Join discussion