Resources  
  • Data Binding in AngularMar 23, 2024. Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • Main Difference Between Method and Computed Property in Vue.jsMar 05, 2024. In Vue.js, methods and computed properties serve distinct roles. Methods are JavaScript functions invoked in response to events, while computed properties cache values based on dependencies, enhancing performance for derived data manipulation.
  • What are Properties in C#? Mar 04, 2024. In this article, we will learn about properties in C#, different types of properties, how to define and use them, and some best practices when working with properties in C#, properties in C# are a way to encapsulate data and provide controlled access to it.
  • Explain Vue.js Computed PropertiesMar 04, 2024. Vue.js, a progressive JavaScript framework, provides developers with powerful tools to create dynamic and responsive web applications. One such tool that significantly enhances the reactivity of your Vue components is computed properties.
  • What is Vue.js Watch Property?Feb 29, 2024. Learn Vue.js's watch property, a powerful feature allowing custom logic reactions to changes in data, computed properties, or reactive values. Utilize object-based and immediate watchers for efficient state management.
  • Mastering Pattern Matching in C#Feb 28, 2024. Mastering Pattern Matching in C# provides comprehensive insights into leveraging pattern matching techniques to enhance code readability and efficiency. From type patterns to constant patterns, property patterns, and more, this guide equips developers with the skills needed to write cleaner and more expressive C# code.
  • Creating Cohorts Using Custom Properties in Application InsightsFeb 27, 2024. In this article, we will learn how to leverage custom properties in Application Insights to create cohorts for in-depth user behavior analysis.
  • How to Generate a Popup Message Box in Power AppsFeb 16, 2024. This article guides us through implementing a popup message box in Power Apps for deleting gallery items. A standard gallery with a delete button is used. Clicking it triggers a confirmation alert. 'Delete' removes the item, 'Cancel' dismisses.
  • Learning and Improving Our Code Style with C# 10Feb 14, 2024. I wrote this article on Learning and Improving Our Code Style with C# 10 to highlight the Basics, and latest features of C# 10, clean code, review code, problem-solving, reading high-quality code, attending workshops and conferences, feedback and mentoring.
  • Toggling Visibility of <HTML> Elements in BlazorFeb 13, 2024. Let&#39;s learn how to hide and show visibility of HTML elements using C#, there are various approaches I am going to cover, the @if conditions, inline styles, internal styles, dynamic style binding, and the hidden attribute.
  • What is a Wrapper Component in React?Feb 09, 2024. Wrapper components in React.js refer to components that encapsulate other components or elements within them. They are commonly used for various purposes such as styling, behavior modification, context management, implementing Higher-Order Components (HOCs).
  • Implementation of Collection View in .NET MAUIFeb 02, 2024. In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Collection View should be used for presenting lists of data that require scrolling or selection.
  • Angular Content Projection: UI Flexibility and ReusabilityJan 31, 2024. Angular&#39;s content projection, also known as transclusion, elevates UI flexibility and reusability within the framework. By enabling the injection of content from a parent component into designated slots within a child component&#39;s template, Angular facilitates the creation of versatile and reusable components.
  • What is Scoped Styling in Vue.js?Jan 25, 2024. In the ever-evolving landscape of web development, Vue.js has emerged as a powerful front-end framework. One of its notable features is the ability to manage styles efficiently within components. Scoped styling in Vue.js 2 and understand how it can elevate your project&#39;s organization and maintainability.
  • Visualizing Data with Style: Pie and Stacked Line Charts in PygalJan 23, 2024. This article is tailored to guide you through creating two distinct types of charts: the Pie Chart and the Stacked Line Chart.
  • Dynamic Styling in Vue.js with v-bind DirectiveJan 22, 2024. Vue.js, a progressive JavaScript framework, empowers developers to build interactive and dynamic user interfaces effortlessly. One of its key features is the v-bind directive, a powerful tool that enables the dynamic binding of HTML attributes to data in the Vue instance.
  • What Are the Different Ways to Create Filters in Vue.js Jan 16, 2024. In this article, we will learn about filters in Vue.js for formatting and transforming data in templates. Learn about global filters, local filters, inline filters, computed properties, and filter functions to enhance your Vue.js applications.
  • Understanding Dependency Injection in C#Dec 18, 2023. This article explores Dependency Injection (DI) in C#, explaining its types (constructor, property, and method injection) and demonstrating its implementation using a UserService and a SqlUserRepository for improved maintainability and testability.
  • Reading properties of an object in C#Nov 26, 2023. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • Empowering Developers with .NET 8Nov 20, 2023. Step into the realm of .NET 8, the latest iteration of Microsoft&#39;s open-source platform that empowers developers to craft cutting-edge applications. With its focus on enhanced performance, cloud-native capabilities, and developer productivity, .NET 8 has revolutionized the way we build software.
  • Reading Zip Files with SharpZip Library in .NETOct 03, 2023. SharpZipLib is a library for .NET that allows working with compressed files, particularly ZIP archives. To read a ZIP file using SharpZipLib, you first install the library and import the necessary namespaces. Then, you open the ZIP file using a `ZipFile` object, access its entries (files or folders), and process the entry data according to your application&#39;s needs. Finally, ensure to close the ZIP file properly to release associated resources.
  • Design a Snake game in BlazorSep 22, 2023. The Snake Game, with its roots tracing back to the 90’s arcade era. Thanks to Blazor, Let&#39;s give this timeless gem a new home on your web browser.
  • ACID Properties in SQL ServerSep 18, 2023. ACID Properties in SQL Server ensure Data Integrity during a transaction.
  • Field vs Property in C#Sep 18, 2023. In C# object-oriented programming (OOP), distinguishing between &quot;fields&quot; and &quot;properties&quot; is fundamental. Fields directly store data, typically with private or protected access modifiers for encapsulation. They&#39;re ideal for managing an object&#39;s internal state. Properties, on the other hand, provide controlled access to fields via getter and setter methods, allowing validation and logic integration.
  • Dependency Injection in C# .NET With ExamplesSep 12, 2023. Discover Dependency Injection in C# .NET: Learn how to achieve flexible, maintainable, and loosely coupled code by decoupling components in your software. Explore constructor, property, and method injection with practical examples.
  • Understanding Vue.js Computed Properties Sep 04, 2023. Computed properties&quot; is a core concept in Vue.js, a popular JavaScript framework for building user interfaces. Computed properties allow you to declare properties in your Vue components that are calculated based on other data properties. They provide a way to perform data manipulation and filtering in a declarative and efficient manner.
  • SQL Server ACID PropertiesSep 01, 2023. Understanding SQL Server ACID(Atomicity, Consistency, Isolation, Durability) Properties.
  • JavaScript Symbols: Unique Identifiers and Private PropertiesAug 09, 2023. Explore the power and applications of JavaScript symbols. Learn about unique identifiers, private properties, iterators, and more. A comprehensive guide.
  • Creating Custom Properties in User Profiles in SharePoint OnlineJul 24, 2023. in this article you will be find how to create custom properties in user profile
  • How to Iterate Over JavaScript Object's Properties and Values?Jul 19, 2023. In this article, we will learn How to Iterate Over JavaScript Object&#39;s Properties and Values
  • Including And Excluding Properties from Model Binding Using the Bind Attribute Jul 06, 2023. Using the &#39;Bind&#39; feature in ASP.NET MVC, you can include and exclude properties from model binding. You can specify which attributes should be included or excluded during model binding using the &#39;Bind&#39; feature. To include particular characteristics during model binding, utilize the &#39;Include&#39; property of the &#39;Bind&#39; attribute. Here is one instance.
  • Including And Excluding Properties from Model Binding Using InterfacesJul 06, 2023. You can specify distinct interfaces for various sets of characteristics and have your model implement those interfaces if you want to include or omit certain properties from model binding. After that, you can bind your model to that interface type to decide which properties are added when the model is bound.
  • Real World Coding Issues - Style and Performance IssuesJun 29, 2023. This article will show common coding issues that I see in most of the projects I work on that are in the “style” category of the code analyzers.
  • AutoMapper in ASP.Net Core 7 Web APIJun 15, 2023. When developing apps, it&#39;s common to wish to map items to either comparable or different kinds. Why do you frequently require this? The database tables of the employed database are typically mapped with the models (also known as entities) in an application. As a result, there is frequently a discrepancy between the model class properties and the data transfer object class properties. You may run into issues because of having to write a lot of boilerplate code to convert instances of disparate types. A large application, like an ERP, could require a lot of models and data transfer object classes. Writing code to perform the mapping manually would be time-consuming. Here, programs like AutoMapper can be useful.
  • Creating Gradient Text Using HTML Control in PowerAppsJun 09, 2023. To create gradient text using HTML control in PowerApps, you can utilize the HTMLText property of the HTML control and apply CSS styling. Here&#39;s an example of how you can achieve gradient text:
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • What is Tracked Properties in Power AutomateMay 03, 2023. In this article, we will learn about what is Tracked Properties in Power Automate, how it is useful and how we can use it.
  • Static Methods Vs. Non-Static Methods In C#Apr 27, 2023. The difference between static and non-static methods in C#.
  • C# 12 Preview Features: Improving Productivity and PerformanceApr 17, 2023. C# 12 Preview Features: Improving Productivity and Performance
  • Get User Properties With “Get User Profile” Action In Power AutomateApr 11, 2023. This article explains how to retrieve a user&#39;s profile in Microsoft Power Automate using the &quot;Get user profile (V2)&quot; action from the &quot;Office 365 Users&quot; connector. This action provides user profile information in a JSON object that can be utilized in subsequent steps.
  • Get User Properties With Graph API In Power AutomateApr 10, 2023. In this article, you&#39;ll discover how to retrieve user profiles in Microsoft Power Automate using an HTTP request via the Graph API. Learn how to filter user profile information for a specific user based on their ‘user principal name’ or other parameters.
  • Power Automate - Send Notification With File Properties TableApr 07, 2023. In this article we will see how we can read the file properties of all the files in a folder of SharePoint online document library and send these properties in tabular format with custom CSS styling in email notification.
  • Copy All Properties Of One Object Into Another Without Any Package In C#Mar 27, 2023. In this article we are going to map one object to another object which are same type and also different type. Some properties are exact same and some are different in case.
  • Power Apps - Fetch Image Property From Multi People Picker ColumnMar 27, 2023. In this article, you will learn about how to fetch image property from multi people picker column in Power Apps.
  • Power Apps - Fetch Image Property From Multi People Picker Column Based On Dropdown SelectionMar 27, 2023. In this article, you will learn how to fetch image property from multi people picker column based on dropdown selection.
  • What Is The Purpose Of The 'Prototype' Property In JavaScript?Mar 17, 2023. What is the &#39;prototype&#39; property in JavaScript and how to use it in your web page.
  • Navigator.online Property In JavaScriptMar 15, 2023. This article describes with an example whether the user is connected to the internet using navigator.online property in javascript.
  • A Comprehensive Guide to the CSS Gap Property: Improving Web LayoutsMar 07, 2023. Learn about the CSS Gap Property and how it simplifies adding space between elements. Discover how to use this powerful property to improve your code and fine-tune spacing. Check out our comparison with other similar properties and explore browser compatibility.
  • How To Check If An Array Is Empty In C#Feb 01, 2023. In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if the array is empty. If any of these methods return 0 or the array is null, it can be determined that the array is empty.
  • Using Change Tokens In .NET 7Jan 05, 2023. In this article, you will learn how to use change tokens in .NET 7.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • Create Multiple Copies Of A Site Page, Rename And Update Properties Using Power Automate Dec 05, 2022. In this article, we will learn to create multiple copies of a SharePoint site page, rename and update its properties using Power Automate &quot;Send an HTTP request to SharePoint&quot; action.
  • Blazor Data And Property BindingNov 23, 2022. I will explain how the data binding works in Blazor. We can bind data both one-way and two-way in Blazor.
  • API Styles EvolutionOct 25, 2022. In this article, you will learn about API Styles and its evolution.
  • Updating List Properties Using Flow Sep 01, 2022. In this article, you will learn how to update list properties using Flow based on another list
  • Get Current User Profile Properties In SPFx Webpart Using MS Graph APIAug 25, 2022. In this article I have explained how to get the current user profile properties in your SPFx webpart using Microsoft Graph API
  • Configuration Of A MicroserviceAug 22, 2022. In this article, you will learn about the configuration of a Microservice.
  • External REST API Call from SPFx WebPart with Changeable PropertiesJul 16, 2022. Anonymous REST API Call from SPFx React WebPart with properties from web part
  • Get Started With OOPS In Flutter 😎Jul 13, 2022. Here cover some interesting topics like inheritance, abstract classes and computed properties.
  • Angular Directives NgClass And NgStyle - How To Change The Style Of An HTML Element ConditionallyJul 12, 2022. Angular directives NgClass and NgStyle - How to change the style of an HTML Element conditionally
  • How To Handle Conditional Styling In ReactJSMay 25, 2022. In this article, you will learn how to handle conditional styling in ReactJS.
  • Styling React JS ApplicationMay 17, 2022. In this article, you will learn how to style our React Js application using different ways.
  • Dynamic CSS Values In BlazorMay 13, 2022. This article explains how to apply dynamic values on css for blazor components.
  • Properties In C# .NetApr 28, 2022. In this article, you will learn about Properties In C#.
  • How To Handle Nullable Reference In .NET 6Apr 18, 2022. As we know there are so many changes in .Net 6 and C# 10. This article describes one of the changes in C#10 on writing properties and objects of a class with an example.
  • Solution - Non-nullable Property Must Contain a Non-null Value in .NET 6Jan 15, 2022. Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable
  • PowerApps - PCF - Input Formatter With Regular ExpressionJan 10, 2022. The benefit and advantage of this component is to dynamically apply validation pattern to HTML5 input control with the help of custom regular exppression. Along with this, it also provides some masked input types like “Date”, “DateTime”, “Time”, “Password”. Custom CSS Styles provides freedom to apply attractive styles as per design and branding. If the control is makred as Required, then input box border can be shown in red color just to highlight about invalid input. This code component is developed and distributed considering both Citizen developer and Pro developer use case scenarios. It is very simple to use and configure.
  • Generate Dynamic PDF With Custom Style In ReactJan 03, 2022. This article is a step-by-step guide to generate dynamic PDF. Also, view and download it in ReactJs using React-pdf library. We will also understand the basic components of the React-pdf library with real life examples.
  • Xamarin.Forms - Style InheritanceDec 16, 2021. In this article, you will learn how to implement Style Inheritance in Xamarin.Forms app.
  • Xamarin.Forms - Create Properties Using Fody in MVVMOct 27, 2021. In this article, you will learn how to use Fody in MVVM in Xamarin.Forms App
  • Get All Columns in a Table Schema Information In One ClickJul 22, 2021. Get Table All Columns Schema Information in One Click In this article, I will show how we can get table columns information like ColumnName, DataType, DataType Length, is mandatory, and column brief description
  • Implementation Of ListPicker And Associated FieldPicker In Property Pane Of SPFx⚓Jun 15, 2021. In this article, you will learn how to implement ListPicker and Associated FieldPicker in Property Pane of SPFx?.
  • Conditional Properties Using React With TypeScriptJun 14, 2021. In this article, you will learn about conditional properties using React with TypeScript.
  • Sync Azure Active Directory Properties With Office 365 User Profile Using PowerShellJun 01, 2021. In this article, we will see how can we sync properties of Azure Actie Directory with Office 365 use profile.
  • Working With SPFX Property PaneApr 03, 2021. In this article, you will learn how to Work with Spfx Property Pane.
  • How To Use Ngx-slider With A Different Type Of Style In AngularMar 17, 2021. In this article, you will learn how to use ngx-slider with a different type of styles in angular.
  • Properties, Methods And Events Of DataSet Class In ADO.NETMar 11, 2021. In this article, you will learn Properties, Methods and Events of DataSet Class in ADO.NET
  • Error | Object Doesn't Support Property Or Method 'Includes' In Internet Explorer 8Mar 10, 2021. In this article, I am going to explain how to fix the error Object doesn&#39;t support property or method &#39;includes&#39; as well as Object doesn&#39;t support property or method &#39;indexOf&#39; in internet explorer (IE) browser. Here, I will also explain about prototype and Polyfill in the javaScript.
  • C# 9 Cheat SheetDec 08, 2020. C# 9 Cheat Sheet with code examples and pros and cons.C# 9 introduced several new language features and enhancements, making it easier to write clean and concise code. Some key features include.
  • Show/Hide Property Pane Component Based On Another Component's Value In SPFXNov 28, 2020. In this article, we will learn how to show/hide a property pane based on another property pane control&#39;s value
  • Styling Built-In Directives Like NgStyle And NgClass - AngularNov 16, 2020. In this article, you will learn about Styling Built-In Directives Like NgStyle And NgClass - Angular.
  • Creating A Personalized Per User SPFx WebPart PropertyNov 02, 2020. In this article, you will learn how to create a user scoped property can be helpful in cases where we want the end users to personalize a webpart on a SharePoint page.
  • SPFx Cascading Dropdown In Property PaneOct 24, 2020. In this article, we will see how to implement a cascading dropdown in the property pane using PnP React controls and PnP JS.
  • C# 9.0 - Record Types Oct 24, 2020. In this article, you will learn about C# 9.0 - Record Types.
  • C# 9.0 - Introduction To Record TypesOct 15, 2020. In this article, you will learn about C# record type.the article explains the introduction of Record Types in C# 9.0. Record Types are a new feature in the C# programming language, designed to simplify the process of working with immutable data. Traditionally, creating classes to store data involved defining properties, constructors, equality methods, and more. With Record Types, this process becomes much more streamlined.
  • Using Init-Only Properties In C# 9.0Oct 09, 2020. In this article, you will learn about Init-Only Properties In C# 9.0.
  • C# 9.0 - Introduction To Init-Only PropertyOct 05, 2020. C# 9.0 introduced a new feature called Init-Only Properties, enhancing the language&#39;s capabilities for defining immutable types. Init-only properties allow you to create read-only properties that can only be set during object initialization. This feature simplifies the creation of immutable objects, providing a concise and expressive syntax for initializing properties at the time of object creation and ensuring their immutability afterwards.
  • Azure Storage CORS Concepts - CORS Rules Concepts - Part SixSep 29, 2020. In this article, you will learn how to create CORS rules for Azure Storage using AllowedOrigins, AllowedMethods, AllowedHeaders, ExposedHeaders, and MaxAgeInSeconds properties.
  • Styling Text In CSSAug 21, 2020. In this article, you’ll learn the commonly used text manipulation properties used in CSS such as color, decoration, alignment, and so on.
  • Customize WPF Application Using Template And StylesAug 17, 2020. In this article, you will learn how to customize WPF Application using Template and Styles.
  • Controls And Layout In WPFAug 13, 2020. In this article, you will learn about Controls and Layout in WPF.
  • MultiTriggers And MultiDataTriggers In WPFJul 25, 2020. In this article, you will learn about advanced versions of triggers used in WPF.
  • OOP - Encapsulating Business Logic In Class PropertiesJul 24, 2020. In this article, you will learn about OOP - Encapsulating business logic in Class Properties.
  • How To Apply Styling On React ComponentsJul 13, 2020. In this article, we will learn different options with the use of styling on a React application.
  • How To Use PropertyFieldCollectionData In SPFx Property PaneJun 22, 2020. This article will help us understand how to use PropertyFieldCollectionData in SPFx Property Pane.
  • Triggers Property, Data And Event Triggers With Animation In WPFJun 02, 2020. What are the triggers in WPF? What is its use &amp; how to implement them in your project.
  • Styling In WPFJun 01, 2020. How to style your controls to change their visual appreance in WPF.
  • Let's Develop An Angular Application - Styling The Template Using CSS Validation Classes And ngModel PropertiesMay 29, 2020. In this article, you will learn about styling the template using CSS Validation Classes and ngModel Properties.
  • How to Detect Text Change Event in SPFx Property Pane Text FieldMay 27, 2020. In this article, let’s discuss how to detect the text change event in the SharePoint Framework Property pane text field and update the adjacent fields based on the new text value.

About style-property

NA

OUR TRAINING