TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Rikam Palkar(35)
Sanjay Kumar(9)
Nitin (7)
Tanuj Gyan(6)
Sandeep Mishra(3)
Sandhya Shinde(3)
Debabrata Ghosh(2)
Ng Cheehou(2)
Satya Karki(2)
Mahesh Chand(2)
Aymen Amri(2)
Sigar Dave(1)
Janarthanan Selvaraj(1)
Rishabh Bhardwaj(1)
Ayush Gupta(1)
Abhishek Saini(1)
Vikas Singh(1)
Lokesh Varman(1)
Dr Gomathi(1)
Vicky Qu(1)
Jin Necesario(1)
Simran Verma(1)
Manish Tewatia(1)
Amit Mohanty(1)
Anu Viswan(1)
Aqib Murtaza(1)
Barath Kumar M(1)
Dhanush M(1)
Lalit Bansal(1)
Rohit Gupta(1)
George (1)
Piyush Pansuriya(1)
Jean-Pierre Bachmann(1)
Amit Gupta(1)
Kishorekumar Pooruli(1)
Premjith Bpk(1)
Abhishek Yadav(1)
Shaun Alan(1)
Resources
No resource found
Code View in Power Apps Studio: A Game-Changer for Developers
Jun 27, 2024.
In this article, we will learn about the new feature of Power App Studio: Code View, which helps the developer view the control code in the YAML + PowerFx language.
The Emergence of Small Langugage Models (SLM) - A Game Changer
Jun 22, 2024.
In this article, we will explore the significance and applications of small language models, examine the pros and cons of SLMs, and discuss the Phi-3 family along with its key features
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.
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.
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.
Understanding Docker: A Game Changer for Software Deployment
May 20, 2024.
Docker, introduced in 2013, automates application deployment within containers, ensuring consistency across development stages. Despite some challenges like security and data storage, Docker simplifies app deployment, as shown in a C# example.
How to Build a Game with React Js?
May 19, 2024.
Learn how to build a game with React.js in this step-by-step guide. Explore React's capabilities for game development, including component-based architecture, state management, and hooks. Discover techniques for creating interactive UIs, handling user input, and optimizing performance for a seamless gaming experience.
Unity 6 Preview: Exciting Features for Game Developers
May 03, 2024.
Unity, the leading platform for creating interactive experiences, has unveiled its highly anticipated Unity 6 Preview, showcasing a plethora of new features designed to empower game developers.
C# Programming: Language Fundamentals, OOP, Async, LINQ
Apr 25, 2024.
This guide provides a thorough exploration of the C# language, covering essential topics such as language fundamentals, object-oriented programming concepts, asynchronous programming, and Language Integrated Query (LINQ).
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
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.
Devin AI: A Game-Changer in Software Development?
Mar 19, 2024.
Imagine a tireless teammate who can code, debug, and even plan entire software projects. That's the promise of Devin AI, developed by Cognition. Touted as the world's first "fully autonomous" software engineer, Devin is causing a stir in the tech world.
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.
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!
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.
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.
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.
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.
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.
Number Guessing Game in Python
Jan 19, 2024.
In this article, you will learn how to write a Guess-the-number game in Python using a Google Colab. You will learn three different ways to implement it.
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.
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.
Create a Dummy Jeopardy Game With ChatGPT
Nov 29, 2023.
Create a dummy Jeopardy! Game With ChatGPT and .Net Core.
Mastering the Infinite Game of Software Development
Nov 06, 2023.
When you embrace the infinite nature of software development, you open yourself up to a lifetime of learning and growth. Mastering the Infinite Game of Software Development
Design a Snake game in Blazor
Sep 22, 2023.
The Snake Game, with its roots tracing back to the 90’s arcade era. Thanks to Blazor, Let's give this timeless gem a new home on your web browser.
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).
How to Bind C# Script in the Unity Game
Jun 12, 2023.
This article explains how we can attach C# script to the scene object in the Unity project.
Getting Started with Unity Game Development
May 27, 2023.
This article explains Unity, its uses for application development, and prerequisites and environment setup for development as well as demonstrates how to get started with game development with an example.
Google Bard A Potential Game-Changer Set to Dethrone ChatGPT
May 13, 2023.
Google Bard, the revolutionary language model chatbot, is now available in India and aims to outperform ChatGPT.
How To Create An Account on Roblox?
Apr 28, 2023.
How to create a Roblox account and login in to enjoy this platform?
C# 12's Records: A Game Changer for Data Objects and Immutable Types
Apr 17, 2023.
C# 12's Records: A Game Changer for Data Objects and Immutable Types
5 Game-Changing Web Technologies to Watch in 2023
Apr 15, 2023.
Learn about the top 5 Web technologies of the year 2023 and beyond
Step-by-Step Guide To Develop Tic-Tac-Toe AI With Blazor
Mar 06, 2023.
Design and developing a Tic Tac Toe game where second-player is AI.
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.
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.
Create A Tic-Tac-Toe Game In Blazor
Aug 28, 2022.
There are a lot of small things I wanted to cover so why not create a game to cover all of them?
How To Create The Sandbox Game Account Using METAMASK
Aug 24, 2022.
The sandbox game account create using metamask.
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.
What Is Sandbox?
Aug 04, 2022.
This article is about sandbox. The Sandbox is a blockchain game in which players use non-fungible tokens (NFTs) on the Ethereum blockchain to create a virtual world.
Simple Game Creation Using PyGame
Jul 16, 2022.
In this article, we will discuss about creating simple games using PyGame Library in python programming language.
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
The Rise Of Play-To-Earn Games
Feb 09, 2022.
In this article, we will see the rise of Play-To-Earn Games and Popular Play-To-Earn Games.
ObservableCollection Vs List In C#
Feb 07, 2022.
Today we will learn the subtle difference between ObservableCollection and List.
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.
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
Stratis Build Hackathon 2021
Nov 18, 2021.
This article will help you will all the information that one may need to participate in the Stratis Build Hackathon.
How To Integrate Stratis Blockchain In Unity Game
Jul 26, 2021.
This article demonstrates how you can Integrate Stratis Blockchain in Unity Game?
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.
How To Counter, Timer And Game Over Logic Using C# Script In Unity 3D
Mar 27, 2021.
In this article, you will learn how to Counter, Timer and Game Over Logic using C# Script in Unity 3D.
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.
21 Flags Game Theory Puzzle - Dynamic Solution With C#
Jan 05, 2021.
I’m develop a program that can automatically generate a winning strategy based on different situation (e.g. different starting flags, winning condition, flags that allowed to remove per turn), compare to previous code that hard code some logic and only works for specific situation.
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.
Why .NET Is A Good Choice For Game Development
Nov 23, 2020.
.NET is a cross-platform, open-source development environment that supports many Game Engines. You can develop your game and its mobile application, website, and other online services using the same platform.
Creating Custom Rock Paper Scissor Game Alexa Skill Using Alexa Hosted NodeJS
Aug 25, 2020.
in this article, i have created a custom rock paper scissor game alexa skill.
Customize WPF Application Using Template And Styles
Aug 17, 2020.
In this article, you will learn how to customize WPF Application using Template and Styles.
Controls And Layout In WPF
Aug 13, 2020.
In this article, you will learn about Controls and Layout in WPF.
Setting Up The Environment To Start With Your First WPF Application
Aug 06, 2020.
WPF helps to customize the existing API's to develop rich user interface desktop applications easily. By the end of this article, you will be able to learn the basic information about Environment setup to start with your first WPF Application. (Getting started with WPF)
Fallback And Target Null Values In WPF
Jul 31, 2020.
In this article, you will learn how to manage error-prone code with 2 simple properties in WPF.
Create A Game Minimap Using C# Scripts In Unity
Jul 29, 2020.
In this article, you will learn how to create a game minimap using c# scripts in unity.
Creating A File System Watcher Application
Jul 28, 2020.
This is a desktop file system watcher application.
MultiTriggers And MultiDataTriggers In WPF
Jul 25, 2020.
In this article, you will learn about advanced versions of triggers used in WPF.
Configure And Deploy A Unity Game To Amazon S3
Jul 04, 2020.
In this article, you will learn how to configure and Deploy a Unity Game to Amazon S3.
REST API's Implementation In WPF Using Entity Framework
Jul 03, 2020.
Learn to integrate REST APIs into your WPF (Windows Presentation Foundation) application using Entity Framework. Utilize Entity Framework for seamless data management and interact with external services using RESTful endpoints, enhancing your application's functionality and connectivity.
INotifyPropertyChanged Interface In MVVM
Jun 18, 2020.
This interface is responsible for updating the UI.
ICommand Interface In MVVM
Jun 16, 2020.
RelayCommand is a widely used concept in WPF-MVVM, One must understand it's behavior. In this article, we will learn it's implementation & behavior.
COVID 19 Tracker With WPF - Part Two
Jun 15, 2020.
We will learn about Combobox in WPF.
COVID 19 Tracker With WPF, Material Design And WebAPI
Jun 14, 2020.
This project is made for educational purposes. You learn how to add styles, design UI, use material design, and much more.
Canvas Control In WPF
Jun 14, 2020.
Canvas control gives full flexibility to the developer, It doesn't have any default values for its children.
Learn About A Wrap Panel In WPF
Jun 12, 2020.
A wrap panel is used when you have to wrap contents horizontally or vertically.
2D Graphics In WPF
Jun 12, 2020.
WPF provides 2D graphics shape to enhance look & feel of an application.
3D Graphics in WPF
Jun 10, 2020.
This article will help you to understand how to create an 3D graphics in WPF, what are the things you should know.
Learn About StackPanel In WPF
Jun 10, 2020.
Stack panel is the simplest yet widely use the panel in WPF, It is used when one wants to arrange item in a single line.
Dynamically Aligned Controls In WPF
Jun 10, 2020.
IsSharedSizeScope is used to align the elements on UI.
Grid Panel In WPF
Jun 10, 2020.
In this article, we will learn how you can use the Grid panel in WPF and its properties.
Multimedia In WPF
Jun 09, 2020.
You can play video and audio with the same element in WPF. You can also add rich controls to control the behavior of the media.
Animation In WPF
Jun 08, 2020.
WPF supports a variety of animation styles. you can apply animations on controls, panels or properties.
Dispatcher In A Single Threaded WPF App
Jun 02, 2020.
Dispatcher is used to manage multithreaded application. It manages Message queues.
Triggers Property, Data And Event Triggers With Animation In WPF
Jun 02, 2020.
What are the triggers in WPF? What is its use & how to implement them in your project.
UserControl In WPF
Jun 02, 2020.
In order to reuse UI screens in multiple windows, we can declare a UserControl.
Static And Dynamic Resources In WPF
Jun 02, 2020.
In this article, you will learn how to define static & dynamic resources, how to utilize them in an application or single-screen wide, and how to load multiple resource files together.
Content Template And Data Template In WPF
Jun 01, 2020.
This article explains about how templates are defined in WPF for both visualizations and data presentation.
Styling In WPF
Jun 01, 2020.
How to style your controls to change their visual appreance in WPF.
Data Binding and it's Modes in WPF
May 29, 2020.
Learn about WPF's data binding modes: One-Way, Two-Way, OneWayToSource, OneTime, and Default. Understand how they control data flow between UI elements and data sources, enabling dynamic updates in the UI based on changes in data sources.
How AI is Revolutionizing Game Development
May 26, 2020.
Right now, we are at the start of an AI revolution, and you might hear people talking about AI threatening to take over our jobs. This topic will be discussed in the following article.
Difference Between Bubbling And Tunneling Routing Events In WPF With An Example
May 26, 2020.
This article explains how bubbling events are different from tunneling events in WPF.
About WPF-game
NA
OUR TRAINING