C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sanjay Kumar(16)
Rikam Palkar(10)
Tanuj Gyan(6)
Vijay Yadav(3)
Vijayaragavan S(3)
George (3)
Sandeep Mishra(3)
Sangeetha S(2)
Jejji Arora(2)
Debabrata Ghosh(2)
Jignesh Kumar(2)
Simran Verma(2)
Tural Suleymani(2)
Aymen Amri(2)
Venkatasubbarao Polisetty(2)
Federico Di marco(1)
Jeeva Subburaj(1)
Chetan Sanghani(1)
Jaimin Shethiya(1)
Rasul Huseynov(1)
Keyur Pandya(1)
Sreenath Kappoor(1)
Ayush Gupta(1)
Rishabh Bhardwaj(1)
Yash Rajora(1)
Jithu Thomas(1)
Ajay Kumar(1)
Mohamed Shifan(1)
Allam Purushotham(1)
Vikas Pawar(1)
Raj Kumar(1)
Vicky Qu(1)
Shaily Dubey(1)
Raj Bhatt(1)
Jaimin Patel(1)
Ziggy Rafiq(1)
Ali Benchaaban(1)
Enrique Aguilar (1)
Santosh Sarnobat(1)
Pasang Tamang(1)
Kaushik Dudhat(1)
Anu Viswan(1)
Aqib Murtaza(1)
Sumit Gupta(1)
Barath Kumar M(1)
David Mccarter(1)
Abhishek Singhal(1)
Rohol Amin(1)
Ganesan C(1)
Kirtesh Shah(1)
Ramakrishnan R(1)
Piyush Pansuriya(1)
Jean-Pierre Bachmann(1)
Amit Gupta(1)
Kishorekumar Pooruli(1)
Resources
No resource found
Working with Dataset Data in ASP.NET GridView
Mar 08, 2025.
This article covers data binding, displaying records, sorting, paging, and editing in GridView. Understand how to fetch data from a database, manipulate it using DataTables, and present it efficiently using ASP.NET GridView for a seamless user experience.
Build Cross-Platform Apps with .NET MAUI Blazor Hybrid
Jan 21, 2025.
There is a way to combine the capabilities of .NET MAUI and Blazor to create applications with a single codebase that works on mobile, desktop, and web platforms. In this article, I will demonstrate how to achieve this.
Menu Navigation Layout in Android Studio
Dec 06, 2024.
The article explains creating a navigation menu layout in Android to enable seamless activity transitions. It covers Java code and XML design with DrawerLayout and NavigationView, ensuring intuitive UI interaction.
Use of ItemsControl in WPF C# for Flexible UI Design
Nov 19, 2024.
This guide explores data binding, templates, and customization techniques for crafting sophisticated layouts. Enhance your WPF skills and unlock the full potential of ItemsControl for efficient UI development.
Fededim.Extensions.Configuration.Protected.DataProtectionAPI: The Ultimate Integration between ASP.NET Configuration and Data Protection API
Nov 05, 2024.
Fededim.Extensions.Configuration.Protected is an improved ConfigurationBuilder which allows partial or full encryption of configuration values stored inside any possible ConfigurationSource and fully integrated in the ASP.NET Core architecture.
An Overview of the Implementation of ValidationRules in WPF C#
Oct 27, 2024.
In WPF, the ValidationRule class enables custom validation for user input in controls like TextBox. By extending the ValidationRule and overriding the Validate method, specific input criteria can be enforced.
Dependency Properties in WPF: Benefits, Usage, and Examples in C#
Oct 21, 2024.
A Dependency Property in WPF is a specialized property supported by the WPF property system. It enables data binding, styling, animation, and value inheritance. This system improves memory efficiency and provides automatic change notifications, making it essential for dynamic, data-driven applications.
Serialization and DeSerialization in C#
Oct 21, 2024.
Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binary, and SOAP serialization.
Efficient Package Management in Large Enterprises with Directory.Packages.props
Sep 23, 2024.
Managing NuGet package versions in large C# solutions can be challenging. The Directory.Packages.props file simplifies this by allowing you to define package versions in one central location, ensuring consistency across all projects.
Detailed use of Action Delegate in C#
Sep 11, 2024.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It supports lambda expressions and anonymous methods, making code more concise. Unlike Func<T>, Action always returns void.
Learn Use of Converters in WPF C#
Aug 20, 2024.
In WPF, IValueConverter and IMultiValueConverter are used to transform data for UI binding. IValueConverter converts single values (e.g., boolean to visibility), while IMultiValueConverter handles multiple values (e.g., combining first and last names).
What is a Sitemap and How to Use It?
Aug 09, 2024.
A sitemap is a crucial tool for website optimization, aiding search engines in indexing your site efficiently. This guide explores the definition, types, and benefits of sitemaps, including XML and HTML formats.
Create XML in .NET Core API and Send to Stored Procedure Using Dapper
Jul 30, 2024.
Learn how to create and send XML data to a stored procedure in a .NET Core Web API. This guide covers setting up a .NET Core Web API project, generating XML from data models, using Dapper for database interaction, and configuring a stored procedure to handle XML data. Ideal for complex data integration.
Advanced ADO.NET Features for Complex Data and Async Operations
Jul 23, 2024.
ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leveraging asynchronous operations for improved performance.
Content Negotiation in .NET Core Web API
Jul 11, 2024.
Content negotiation in REST APIs allows clients to specify their preferred response format (e.g., JSON or XML) using HTTP headers like Accept and Content-Type. ASP.NET Core Web API supports this with built-in JSON support and customizable formatters for XML and other formats.
Understanding View Binding in Android
Jul 09, 2024.
View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
Understanding LINQ While Writing Your Own
Jul 03, 2024.
LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
How to Convert varbinary to Base64 String in SQL Server
Jul 03, 2024.
Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
Copying Footers Between SharePoint Sites Using PnP PowerShell
Jun 24, 2024.
I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
How to do .NET 8 Migration with Existing Tools?
Jun 19, 2024.
Microsoft's technology ecosystem spans desktop, web, and mobile apps, each requiring specific frameworks. To upgrade applications effectively, use Visual Studio 2022 with .NET Framework or Core, and the Upgrade assistant extension.
Web API
Jun 11, 2024.
A Web API (Application Programming Interface) enables applications to communicate over the internet. Using protocols like HTTP and data formats such as JSON and XML, Web APIs facilitate interaction between different software systems.
Convert an Embedded Resource into an XML File in WPF C#
Jun 06, 2024.
When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
How to Remove Extra Column from DataGrid WPF Control
May 31, 2024.
The WPF DataGrid often displays an extra column due to default behavior. This issue arises when the source data contains fewer columns than displayed. By adjusting the XAML code and setting the ColumnWidth attribute to "*", the extra column can be removed, ensuring proper alignment of data in the DataGrid.
WADL vs WSDL: The Battle of Web Service Descriptors
May 30, 2024.
Explore the significance and evolution of WSDL and WADL in web service description. WSDL, tailored for SOAP-based services, contrasts with WADL, simpler and geared towards RESTful services. While WSDL enjoys broader adoption, WADL's simplicity attracts developers in REST contexts.
Understanding the Singleton Pattern in C#
May 27, 2024.
The Singleton pattern is one of the most commonly used design patterns in software engineering. It falls under the category of creational patterns and ensures that a class has only one instance while providing a global point of access to that instance.
Utilization of DataGrid VS ListBox in WPF C#
Apr 22, 2024.
In WPF (Windows Presentation Foundation), the DataGrid and ListBox are two powerful controls that serve different purposes and are suitable for different scenarios
Bulk Data Import in Blazor Server with Radzen Datagrid
Apr 19, 2024.
In this article, we'll explore how to implement a robust bulk data upload feature in a Blazor Server application using the Radzen Datagrid component for rendering the bulk imported data.
Let's Create WPF Blazor Hybrid App
Apr 15, 2024.
Unlock the potential of WPF and Blazor by combining their strengths in a hybrid application. Let's seamlessly blend the rich, desktop-centric features of WPF with the modern, web-enabled capabilities of Blazor to create a versatile and powerful application that delivers the best of both worlds.
Learn JSX and React Components
Apr 03, 2024.
A brief idea about the JSX and React Components.
Exploring Inter-Process Communication in WPF Using Named Pipes
Mar 19, 2024.
In a WPF application, inter-process connectivity typically involves communication between different components or modules within the same application or between separate WPF applications running on the same system or across different systems.
Exploring Various Triggers and Their Applications in WPF
Mar 11, 2024.
Triggers play a crucial role in defining interactions and behaviors within the WPF user interface. This article explores the various types of triggers in WPF and their implementation within the MVVM pattern. Property triggers, data triggers, event triggers, and multi-data triggers.
Static Resource vs Dynamic Resource in WPF
Mar 11, 2024.
Delve into WPF's resource binding, exploring both static and dynamic approaches. Static binding offers performance benefits and compile-time validation, while dynamic binding allows runtime updates, enabling dynamic theming. Happy coding!
Creating Custom NuGet Packages in C#
Mar 10, 2024.
Learn how to create custom NuGet packages in C# with this step-by-step guide. Set up a project, add components, create a .nuspec file, package your project, and optionally publish to nuget.org.
Customize Your Office Installer Using Office Deployment Tools
Feb 28, 2024.
Customize your Microsoft Office installer effortlessly with Office Deployment Tools. Tailor settings, configurations, and deployment strategies to fit your organization's needs using command-line options and XML configuration for seamless setup.
Creating a Personalized Waiting Window in .NET 6, 7, 8 WPF
Feb 26, 2024.
A custom loader in a WPF (Windows Presentation Foundation) .Net 6,7,8 application serves the purpose of indicating to the user that the application is performing a task or operation that may take some time to complete.
D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShell
Feb 20, 2024.
Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
Android Responsive Login Screen Design using Constraint Layout
Feb 16, 2024.
In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
Implementing a Custom Loader in WPF with MVVM
Feb 06, 2024.
A custom loader in a WPF (Windows Presentation Foundation) application serves the purpose of indicating to the user that the application is performing a task or operation that may take some time to complete.
CesiumJS Sample in WPF Application
Feb 06, 2024.
This project streamlines CesiumJS integration into a WPF app, leveraging powerful geospatial visualization. Learn to inject KML files, define locations, create lines, and manage KML loading. Follow the steps to embed CesiumJS, set up HTML, and integrate with WPF using CefSharp.
Using XML Key-Value Pairs in C# as a Dictionary
Jan 30, 2024.
To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
Visual Studio Feature: Convert JSON or XML to Classes
Jan 30, 2024.
In this article, I will demonstrate how to use the Visual Studio feature Paste JSON as Classes or XML as Classes. This feature was introduced in Visual Studio 2013. This compelling feature will help the developer convert JSON to a C# class or XML to a C# class.
Validation Rules in WPF
Jan 19, 2024.
We need validation rules to play a crucial role in maintaining data accuracy and consistency within an application. Learn to enhance the WPF user experience by implementing email pattern-matching validation.
How to Develop a Custom Message Box in .NET 6,7,8 for WPF?
Jan 18, 2024.
As used in software development, the term "custom message box" describes a dialog box or pop-up window that is created and implemented with unique features, looks, and functionality instead of depending on the built-in or operating system-provided standard message box.
DropDown List Using XML in ASP.Net C#
Jan 11, 2024.
The first dropdown, "ddldist," displays district names, and the second dropdown, "ddltaluka," displays taluka names based on the selected district. The C# code uses the Page_Load method to load district data on the initial page load. The ddldist_SelectedIndexChanged method handles the district selection, filtering, and populating of the taluka dropdown accordingly. The XML files "District.xml" and "Taluka.xml" store the district and taluka data, respectively.
How To Invoke SOAP Web Service in MuleSoft
Dec 24, 2023.
In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
Creating a "League of Legends" Inspired Play Button in WPF
Dec 03, 2023.
This article provides a detailed explanation and analysis of developing a PLAY button inspired by the game "League of Legends" using pure WPF technology.
Get XML element value Action in Desktop flow using Microsoft Power Automate
Nov 03, 2023.
Reading this article, you can learn how to Get XML element value in Desktop flow using Microsoft Power Automate.
Write XML to File Action in Desktop Flow using Microsoft Power Automate
Oct 31, 2023.
Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
Read XML From File Action in Desktop Flow using Microsoft Power Automate
Oct 30, 2023.
Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
How To Render Avatar Images From XML Data In Blazor?
Oct 11, 2023.
In this scenario, you'll need to read XML data, parse it, and then render avatar images inside a popup component in a Blazor application. This involves creating a data model, a service to handle XML parsing, and a component to display the avatars in the popup.
ASP.NET (2) - ASP.NET Controls
Sep 06, 2023.
This series of articles on ASP.NET, originally from legacy OneNote notes, covers fundamental concepts. It offers valuable insights into current programming involving similar technologies like Angular and React.
Creating a Dynamic DataGrid Sourced from Tree Component in Blazor
Aug 25, 2023.
Creating a DataGrid component that receives data from Tree component. This combination of components can be super useful in scenarios like product catalogs, file explorers, and organizational charts etc.
Exploring the Diverse Flavors of LINQ with Examples
Aug 22, 2023.
LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVC
Aug 07, 2023.
Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
Converting Strings in C#: JSON, Base64, XML, CSV and Reverse
Jul 19, 2023.
Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this must-read article!
Efficient Image Optimizer Using C# WPF
Jul 18, 2023.
This article explores the process of building an image optimizer using C# WPF (Windows Presentation Foundation).
HTML Vs XML - Whats The Difference?
Apr 06, 2023.
In this article, you will learn about HTML vs XML.
Include XML Comments In Swagger under ASP.NET Core 2.2
Mar 22, 2023.
In this article, you will learn how to include XML Comments in Swagger under ASP.NET Core 2.2.
Multiple Views And Access To XML Files With .NET For iOS
Mar 21, 2023.
You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
XML Serialization in practice: Preparing The Central Bank Service
Feb 17, 2023.
Learn XML serialization in practice. In the second part of our article, we will get acquainted with XML serialization and look at the use of the Central Bank's XML service in real practice.
Create Lookup Field In Existing SharePoint List Using REST API Schema XML
Feb 06, 2023.
In this article, we will learn how to create lookup field in existing SharePoint list using REST API and schema XML. The REST API enables us to communicate with SharePoint using standard HTTP methods, such as GET, POST, PUT, and DELETE. The API provides access to various SharePoint entities including lists, libraries, and sites, allowing us to retrieve data, create and update lists, fields, items, upload files and manage user permissions.
Using XML Comments As Web API Documentation With Swagger
Jan 18, 2023.
This article demonstrage how to use C# XML Comments as a Web API documentation with Swagger.
Convert XML Files Data To List Of Object
Nov 13, 2022.
In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
Live Chart (Streamed Data) Update Using Oxyplot
Nov 11, 2022.
This article demonstrates how to update the chart with newly streamed data using Oxyplot.
Filter Data On XAML Grid In WPF
Oct 18, 2022.
There are different ways to filter data in the XAML grid, but I'm just showing you how you can easily filter your data in the XAML grid by clicking the checkbox.
Improving The Fetch XML Performance In Dynamics CRM
Sep 20, 2022.
The articles shares the information and steps to improvise the performance of FetchXML query in DataVerse
CRUD Web API Service Call Function In WPF Application
Sep 15, 2022.
In this article, you will learn about CRUD Web API Service Call Function In WPF Application.
Progress Bar In WPF
Aug 30, 2022.
In this article, you will learn about Progress Bar in WPF.
Visibility=Collapsed Vs Visibility=Hidden In WPF
Aug 29, 2022.
In this article, you will learn about Visibility=Collapsed Vs. Visibility=Hidden In WPF.
WPF Simplified - The Idea That Became A Knowledge
Aug 21, 2022.
This is the journey of the book I got the opportunity to be part of.
Rock Your Code: XML Documentation Of Code For Microsoft .NET
Jul 27, 2022.
In this article, you will learn about XML Documentation of code for Microsoft .NET.
XML Shredding In T-SQL
Jul 19, 2022.
In this article, you will learn about XML shredding in T-SQL.
Converters In WPF
Jun 20, 2022.
In this article, you will learn about Converters in WPF.
Navigation In WPF And MVVM Using Tab controls
Jun 14, 2022.
To manage the content of the graphical region in WPF, there is some tools (like PRIM) that allows to have a main region which doesn't change during the navigation, and a dynamic one that will hold the content of the controls. In some simple cases, we want to perform it in a simple way without using any tool. Fortunately, the Wpf Material design Toolkit http://materialdesigninxaml.net/ is providing great items that can be used as navigation menus. In this article I'm going to show you how to create an application and navigate between views using The tab control of the Material design toolkit in WPF
String.XML In Android
May 09, 2022.
In this article, you will learn about String.XML in Android.
Using For XML Clause In SQL Queries
May 05, 2022.
For XML clause is used to convert the SQL result set into XML format. It is a very much helpful clause when we need XML data from the SQL result set. The FOR XML clause can be used in top-level queries and in subqueries. The top-level FOR XML clause can be used only in the SELECT statement. In sub queries, FOR XML can be used in the INSERT, UPDATE, and DELETE statements. 
Retrieve Data Using FetchXMLWebAPI With Webresource In Dynamics CRM
Apr 07, 2022.
In Dynamics 365 CRM, for certain requirements data needs to be retrieved to achieve business functionality. As an example, all contact records whose first name starts with V taken for explanation.
ObservableCollection Vs List In C#
Feb 07, 2022.
Today we will learn the subtle difference between ObservableCollection and List.
Convert JSON And XML Object Into Class Using Visual Studio
Jan 11, 2022.
In this article, we are going to explore about how to convert a JSON/XML object into the classes using Visual Studio.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part Six
Dec 03, 2021.
This article series is aimed at teaching you how to use Cosmos DB trigger and HttpTrigger in an Azure function to create a serverless app that can broadcast the data to clients using SignalR. The client can be a desktop/web/mobile client. For this article, I will be using a simple desktop client created using WPF with Material Design.
FOR XML In SQL Sever
Dec 02, 2021.
In this article, we are going to discuss FOR XML Path Clause in SQL Server.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part Five
Dec 01, 2021.
This article series is aimed at teaching you how to use Cosmos DB trigger and HttpTrigger in an Azure function to create a serverless app that can broadcast the data to clients using SignalR. The client can be a desktop/web/mobile client. For this article, I will be using a simple desktop client created using WPF with Material Design.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part Four
Nov 29, 2021.
This article series is aimed at teaching you how to use Cosmos DB trigger and HttpTrigger in an Azure function to create a serverless app that can broadcast the data to clients using SignalR. The client can be a desktop/web/mobile client. For this article, I will be using a simple desktop client created using WPF with Material Design. To follow along please make sure you have an Azure account.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part Three
Nov 26, 2021.
In this article, you will learn about live charts using Azure Cosmos DB, Azure functions, SignalR and WPF.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part Two
Nov 25, 2021.
This article series is aimed at teaching you how to use Cosmos DB trigger and HttpTrigger in an Azure function to create a serverless app that can broadcast the data to clients using SignalR. The client can be a desktop/web/mobile client.
Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part I
Nov 23, 2021.
This is part 1 of the article series. We will learn how to create a resource group and cosmos db here. This article is aimed at teaching you how to use Cosmos DB trigger and HttpTrigger in an Azure function to create a serverless app that can broadcast the data to clients using SignalR. The client can be a desktop/web/mobile client. For this article, I will be using a simple desktop client created using WPF with Material Design
Usage Of XML Function In Power Automate
Oct 28, 2021.
In Power Automate, at times we must work on strings which have XML values. We can use XML function in power automate to convert string value to XML and perform related operations. As an example, notification xml string is used here to send notification to required person.
Get XML Data From SP Library And Upload To SP List - JavaScript
Jul 03, 2021.
In this article, you will learn how to get XML Data from SharePoint Library & Upload to SharePoint List - JavaScript REST API.
Forms Authentication (A), Using XML
May 03, 2021.
This article discuss Forms Authentication by using XML
Introduction To WPF
Apr 29, 2021.
In this article, you will learn about WPF.
Entity Framework (7), With .NET WPF, Database-First
Apr 21, 2021.
This article describe to develop a WPF app with entity framework, database first approach.
Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In .NET Core 3.1 Using MVC Core
Apr 12, 2021.
This article demonstrates how to export functionality with different types of file formats like excel, pdf, word, csv, json, xml and text files using a .net core 3.1 application. I have implemented the most frequently used file format to export data in real time projects.
Rounded Scrollbar In ListView/ComboBox - WPF
Mar 24, 2021.
In this article, you will learn about rounded scrollbar in ListView/ComboBox - WPF.
Mass Email Processor
Mar 08, 2021.
In this article, you will learn how to generate mass e-mails.
WPF Bind JSON Array Using Listbox And DataTemplate In C#
Feb 26, 2021.
In this article, you will learn about WPF Bind JSON Array using Listbox and DataTemplate in C#.
WPF vs. WinForms
Jan 22, 2021.
In this article, you will learn about WPF vs WinForms.
DataContext And Autowire In WPF
Jan 04, 2021.
There are 3 ways to bind the View with ViewModel. One way is to bind DataContext Property within a XAML, Second is to assign DataContext within Code-Behind and last using ViewModelLocator.
Create Chrome-Like Loading Animation In WPF⭕
Dec 29, 2020.
Learn to create a Chrome-like circular loading animation control in WPF. Utilize Visual Studio or Blend, Arc control, Storyboard animations, and Dependency Properties for customization. Enhance user experience and productivity with visually appealing UI components.
Drag and Drop ListBoxItem with Telerik Behavior: Parent Boundary
Dec 17, 2020.
Explore advanced drag and drop techniques in WPF using Telerik controls. Utilize ViewModel and ObservableCollection for dynamic data handling. Master MVVM architecture for cleaner code. Step-by-step guide with detailed code explanations. Ideal for WPF developers seeking efficient drag and drop solutions.
Learn About AJAX Security
Dec 15, 2020.
Explore the swift and interactive technology of AJAX in web development, its implementation using JavaScript, XML, and HTML, and its security vulnerabilities such as session management flaws, CSRF, and XSS attacks. Learn how to secure AJAX applications effectively for robust web security.