Resources  
  • Passing Values Between Tasks in Azure DevOps PipelineMar 26, 2024. In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pipeline automation.
  • Exploring Inter-Process Communication in WPF Using Named PipesMar 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 WPFMar 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 WPFMar 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.
  • Quick SQL Refresher Feb 28, 2024. The Quick SQL Refresher provides a concise cheat sheet for SQL, covering essential concepts, keys, commands (DDL, DML, DQL, DCL, TCL), constraints, clauses, T-SQL fundamentals, joins, functions, exception handling, indexes, views, stored procedures, transaction control, triggers, and cursors.
  • Creating a Personalized Waiting Window in .NET 6, 7, 8 WPFFeb 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.
  • Implementing a Custom Loader in WPF with MVVMFeb 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 ApplicationFeb 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.
  • Explain about Git and GitHubFeb 01, 2024. Git is a powerful, open-source distributed version control system designed by Linus Torvalds for efficient project management. Developers use Git for version control, tracking code changes, and collaborating. GitHub, a platform utilizing Git, facilitates collaborative coding, project hosting, and version control.
  • Command Line Arguments in C ProgrammingJan 30, 2024. Programming can be powerfully customized with command line options without requiring changes to the code. In this article, we will learn how command line arguments in C programming empower users to modify a program's behavior, providing flexibility and adaptability without altering the source code.
  • Working with Modern Command Bar Designer in PowerAppsJan 25, 2024. In this article we will discuss about modern command designer and how it is becoming more popular alternative to RibbonWorkBench. We will discuss various Use Cases followed by a demo discussing step by step process for the same.
  • What is Command Pattern in C#? Jan 25, 2024. The Command Pattern, a behavioral design pattern in C#, transforms requests into stand-alone objects, promoting decoupling between sender and receiver. It enhances flexibility, undo/redo capabilities, and ease of command integration.
  • Validation Rules in WPFJan 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.
  • Docker Swarm: Transforming Container OrchestrationJan 12, 2024. Explore the dynamic world of Docker Swarm, where machines become nodes, managers orchestrate, and containers dance in perfect harmony
  • Microservices Development Using CQRS Architectural Design Pattern in Microsoft Asp.net Core Web API Dec 28, 2023. The Command Query Responsibility Segregation (CQRS) pattern is an architectural principle that separates the responsibility for handling commands (write operations that change state) from queries (read operations that retrieve state). It advocates having separate models for reading and writing data.Components of CQRS: Command: Represents an action that mutates the system's state.Query: Represents a request for data retrieval without changing the system's state.Command Handler: Responsible for executing commands and updating the system's state.Query Handler: Responsible for handling read requests and returning data in response to queries.Command Model: Contains the logic and rules necessary to process commands and update the data store.Query Model: Optimized for querying and presenting data to users, often involving denormalized or optimized data structures tailored for specific queries.Key Principles: Separation of Concerns: Splitting the responsibilities of reading and writing data helps in maintaining simpler, more focused models for each task.Performance Optimization: Enables independent scaling of read and write operations. The read model can be optimized for query performance without affecting the write model.Flexibility: Allows for different models to be used for reading and writing, which can cater to specific requirements and optimizations for each use case.Complex Domain Logic: Particularly beneficial in domains where read and write logic significantly differ, allowing tailored models for each type of operation.Benefits: Scalability: CQRS enables scaling read and write operations independently, optimizing performance.Flexibility and Optimization: Tailoring models for specific tasks allows for better optimization of the system.Complexity Management: Separating concerns can make the system easier to understand and maintain.
  • Building To Do Application Using RustDec 15, 2023. In this article, we will learn to build a todo application using Rust Programming Language. This comprehensive guide navigates through creating a To-Do application using Rust. It covers Rust installation, setting up the project with Rocket, and building a functional UI for task management.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • Creating a "League of Legends" Inspired Play Button in WPFDec 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.
  • Navigating Azure Storage: Essential CLI CommandsNov 29, 2023. Azure CLI unlocks the power of Microsoft Azure Storage. Key commands like create, show, list, update, and delete storage accounts empower efficient cloud storage management. Elevate your Azure journey with these commands.
  • How To Solve Nodemon Command Is Not Recognized In Terminal For Node.js?Oct 17, 2023. This article guides users through Nodemon installation in Node.js and offers solutions for the "Nodemon command is not recognized" error, facilitating streamlined and efficient development with automatic server restarts.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • Clean Architecture and Command Pattern in ASP.NET Core API ImplementationOct 16, 2023. Explore a clean and efficient approach to building a robust ASP.NET Core Web API for a Car Company, using Clean Architecture and the Command Pattern. Simplify CRUD operations with a structured and maintainable design.
  • CRUD Operations in ASP.NET Core with 3-Tier Harmony and Command Builder Design Pattern Oct 04, 2023. Command Builder Design Pattern in an ASP.NET Core Web API using a Three-Tier Architecture for CRUD operations. For the sake of this example, let's assume you have a model named CSharpCornerArticle.
  • Useful Git CommandsSep 27, 2023. Mastering Git Your Ultimate Cheat Sheet for Effortless Version Control is a comprehensive reference guide that provides a condensed and quick-access summary of essential Git commands, concepts, and best practices. It aims to empower users with the knowledge and tools to effectively utilize Git for version control, streamline workflows, and enhance collaboration on software development projects. This cheat sheet covers a range of Git functionalities, including repository management, branching, merging, collaboration, resolving conflicts, and more, making Git usage efficient and straightforward for both beginners and experienced developers.
  • Essential Git Commands Every Developer Should KnowSep 23, 2023. Git can also be intimidating and confusing for beginners and even experienced developers. That's why in this article, we will learn some of the essential Git commands that every developer should know and master.
  • Transaction Control Language (TCL) Commands in SQLSep 14, 2023. In this article we will learn about Transaction Control Language (TCL) Commands in SQL.
  • SQL CommandsSep 08, 2023. In SQL Server, various types of SQL commands are essential for managing and querying databases. These include Data Query Language (DQL) for retrieving data, Data Definition Language (DDL) for defining structures, Data Manipulation Language (DML) for data manipulation, and Control Language (CL) for transactions and control. Understanding these SQL command types is crucial for effectively working with SQL Server databases, enabling tasks from creating tables to querying data, ensuring efficient data management and retrieval.
  • Generating Certificate and Private Key FilesAug 24, 2023. Create local certificates with ease using Visual Studio 2017 Developer Command Prompt. Generate certificate and private key files, then install them locally for enhanced security. Simplify your authentication process.
  • Azure Virtual MachinesAug 16, 2023. Unlock Cloud Potential with Azure Virtual Machines. Explore deployment, management, scalability, and versatile use cases. Achieve security, efficiency, and innovation as Azure VMs reshape cloud computing's future.
  • The Convergence of Voice Commands and Generative AI with Other technologiesAug 02, 2023. The Convergence of Voice Commands and Generative AI with Other technologies
  • Boosting Your Productivity with .NET Core CLI CommandsJul 31, 2023. Boost productivity with Visual Studio's command-line interface (CLI) for .NET Core. Learn essential commands for creating projects, running applications, managing dependencies, and more. Streamline development with CLI power.
  • Efficient Image Optimizer Using C# WPFJul 18, 2023. This article explores the process of building an image optimizer using C# WPF (Windows Presentation Foundation).
  • Docker CommandsJul 10, 2023. Docker Commands
  • How to Create a CLI in Go?Jun 15, 2023. The article describes how we can create easy to use CLI in Go using the cobra package.
  • WebdriverIO Functions and CommandsJun 12, 2023.
  • Execute DOS Command in Desktop flow using Microsoft Power AutomateJun 09, 2023. Reading this article, you can learn how to Execute the DOS Command using Run Dos command actions with Desktop flow in Microsoft Power Automate.
  • Simplify Your Git Workflow: Introducing Git-ChatGPT, a Command Line Tool Empowered by ChatGPTMay 08, 2023. AI, ChatGPT, OpenAI API, git, git bash, C#, dotnet core
  • Secret GIT commandsMay 04, 2023. Some of the secret commands in GIT
  • How To Use Cargo Commands In Rust?May 01, 2023. explain all main commands in rust programming langugue
  • How To Update Table Data In MysqlApr 28, 2023. Mysql DML commands and Update command in a Mysql.
  • How to use MySQL DML commands in RustApr 18, 2023. In this article We learned how to Select, insert, update, and delete data in our database using rust.
  • Details about Dokcer and it's basic commandsApr 18, 2023. Details about Docker and it's basic commands
  • Commonly Used Vue.js CommandsMar 17, 2023. In this article, you will learn about Vue.js Commands.
  • Get CLI - The Ultimate Command Line Tool for GetX Architecture in FlutterFeb 22, 2023. As a Flutter developer, you know that creating complex mobile applications can be a time-consuming and challenging task. The GetX library has been gaining popularity for its simplicity and ease of use, and with the addition of the Get CLI, the development process has become even more streamlined.
  • Automate Purge Process Using Windows 10Feb 06, 2023. In this article, you will learn how to setup a file purge process using Task Scheduler and Command Prompt in windows 10.
  • Insight.Database .NET Micro ORM - Executing And Carrying Out SELECT SQL CommandsJan 09, 2023. Insight. The database micro-format for.NET is quick, light, and, dare we say it, fantastic. SQL commands are simple to run using Insight. SqlCommand class and parameters are no longer used. AddWithValue. Insight automatically converts command arguments from an object.
  • How To Install Azure CLIDec 29, 2022. In this article, I have described various steps to install Azure CLI (Command Line Interface).
  • Run Powershell Commands From The Azure PortalDec 27, 2022. In this article, you will learn how to run Powershell Commands from the Azure Portal.
  • SQL KeywordDec 13, 2022. In this article we will learn about SQL Keyword
  • Run JavaScript From Modern Command Designer In Dynamics CRMNov 29, 2022. During certain scenarios we must call JavaScript from Command bar present in a ribbon for every Dynamics CRM Form. As an example, contact main form was used in a model driven app to explain this scenario.
  • Solution - Angular CLI MODULE_NOT_FOUND ErrorNov 11, 2022. In this article, you will learn how to create new project at time not found angular-cli.
  • Live Chart (Streamed Data) Update Using OxyplotNov 11, 2022. This article demonstrates how to update the chart with newly streamed data using Oxyplot.
  • Browser Commands In Webdriver IOOct 31, 2022. In this article, you will learn about Browser Commands In Webdriver IO.
  • Browser and Action commands in CypressOct 27, 2022. In this article, we will see some of the browser and action commands in cypress.
  • Browser Commands Selenium With PythonOct 26, 2022. In this article, you will learn about browser commands selenium with python.
  • Filter Data On XAML Grid In WPFOct 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.
  • How To Enable The Modern Command Bar Experience In The Canvas AppsSep 27, 2022. Step by Step details to enable Microsoft Power Platform Canvas Apps Modern Command Bar
  • CRUD Web API Service Call Function In WPF ApplicationSep 15, 2022. In this article, you will learn about CRUD Web API Service Call Function In WPF Application.
  • Cheat Sheet For Git Basic CommandsSep 14, 2022. This article provides a comprehensive list of basic Git commands essential for daily use. It covers configuring the Git environment, working with online repositories, understanding the life cycle of a Git repository, and other miscellaneous Git commands.
  • Implementing Prompt Dialog In D365 CE - Part IISep 02, 2022. This is second part of implement dialog prompt in D365.
  • Implementing Prompt dialog in D365 CE - Part ISep 01, 2022. This article is about implementing dialog in Dynamics 365 CE
  • Progress Bar In WPFAug 30, 2022. In this article, you will learn about Progress Bar in WPF.
  • Visibility=Collapsed Vs Visibility=Hidden In WPFAug 29, 2022. In this article, you will learn about Visibility=Collapsed Vs. Visibility=Hidden In WPF.
  • WPF Simplified - The Idea That Became A KnowledgeAug 21, 2022. This is the journey of the book I got the opportunity to be part of.
  • How To Execute SQL Statements From Command PromptJul 30, 2022. Here we discuss SQL and how to execute SQL statements in a command prompt.
  • Create A .Net Core Web API Using Command LineJun 27, 2022. In this article, you will learn how to create .NET core Web API using Command Line.
  • Button On Command Bar Doesn't Appear When An Item Is Selected In Sub Grid Microsoft Dynamic CRM - IssueJun 27, 2022. The mentioned issue would have been commonly encountered by the developers who extensively play around with the sub gird’s, who would have encountered the scenario where in you have a button on the sub grid which gets disappear when you select a sub grid record or doesn’t appear on the sub grid. This article would provide a resolution for such issues whereas the customized button doesn’t appear on one or more grid items selection in MS CRM online as expected.
  • Converters In WPFJun 20, 2022. In this article, you will learn about Converters in WPF.
  • Navigation In WPF And MVVM Using Tab controlsJun 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
  • Adding Custom C# Slash Commands To MattermostApr 29, 2022. This article describes a prototype that can be reused easily to host custom slash commands for the popular Mattermost team collaboration software. A slash command is a functional extension that allows to render a complex message based on the command's input on behalf of the user using the command.
  • Manage GitHub Repository Using Visual Studio CodeApr 18, 2022. How to manage public and private repository using VS Code and Push Project Changes to Repo
  • Run Commands On Microsoft Azure Virtual MachineApr 18, 2022. if you have a virtual machine and you need to run some commands then normally you've to log in and then open a terminal and then execute your commands. What if there is another way of doing let us learn in this article.
  • Important Git Commands With ExamplesMar 10, 2022. This article describes the Important Git commands with examples and use cases
  • How To Install SQLite On Windows 11Feb 18, 2022. Learn how to easily install SQLite on your Windows 11 system. Download the setup, configure environment variables, and use the command prompt to set up the SQLite shell for efficient database management.
  • Command Line Arguments In JavaFeb 16, 2022. In this article, you will learn about the command line arguments in Java
  • ObservableCollection Vs List In C#Feb 07, 2022. Today we will learn the subtle difference between ObservableCollection and List.
  • SQL Commands : DDL, DQL, DML, DCL, TCL with Examples Jan 27, 2022. Master the art of SQL DDL commands, DCL commands, DQL commands, DML commands, TCL commands for effective database management.
  • Frequently Used Linux CommandsJan 20, 2022. This article will help to learn the simple and frequently used Linux commands
  • Maven: What , When & Why?Jan 19, 2022. Maven intro, POM files details , Frequently used commands
  • Managing Files On GitHub Using Git Bash In Real-Time Scenario - Removing A Specific File From Pull RequestJan 14, 2022. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.
  • Artillery - API Freighting Tool Overview Jan 08, 2022. Load Performance Testing, Artillery tool setup , Basic commands , Debugging & Reporting
  • Code CheckIn Using Git CommandsDec 31, 2021. This article explains how to check in the code to Azure Dev Ops repository using git commands
  • Lesser Known Git CommandsDec 30, 2021. The article covers 5 important rare git commands, which are extremely useful
  • Hiding Special Buttons From Dynamics 365 CEDec 30, 2021. This article is about hiding button which is not visible in Ribbon workbench for easy hide.
  • Live Charts Using Azure Cosmos DB, Azure Functions, SignalR And WPF - Part SixDec 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 FiveDec 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 FourNov 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 ThreeNov 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 TwoNov 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 INov 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
  • Top 15 Git Commands With Examples For Every Developers💪Nov 12, 2021. Git is a version control system for managing the source code which keeps the track of it with many options. Basically, it is a software to track the changes of files mostly used for coders to work collaboratively and source code management during the software development.
  • Advanced Entity Framework Core: Extract data access layer with migrations to the library project and Execute migrations from the command lineOct 13, 2021. See code examples in this article: Let's imagine you have a solution with many projects including a web application with the name "MiniService", which contains appsettings.json and a library project with DbContext and Migrations with any name f.e. "MiniService.Data". You most likely want to use the exact connection string in the appsettings.json used by the web app. May be different cases when you will need to run migrations from the command line, for example, there is no 'Package Manager Console' in VS for Mac.
  • List Of Frequently Used Docker CommandsAug 12, 2021. In this article, you will learn about frequently used docker commands.
  • Command Line Tools Using .NET 5Jul 06, 2021. This article presents how simple it is to create CLI/Command-line tools using C# with .Net 5.0. Creating a command-line tool in C# is simple with less effort to manage command mapping and argument parsing.
  • List Of Commonly Used GitHub CommandsJun 29, 2021. I'm adding here the list of commonly used GitHub commands. These are the commands we use in our day to day programming when working with GitHub Repository.
  • Most Important SQL CommandsJun 27, 2021. In this article, you will learn about the most important SQL Commands.
  • Commonly Used Angular CommandsJun 24, 2021. A list of commonly used Angular commands. These commands are helpful whenever we face some problem while working on Angular projects.
  • Managing Files On GitHub Using Git Bash In Real-Time Scenario - Know About GitHub ReviewerMay 28, 2021. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.
  • Managing Files On GitHub Using Git Bash 📥📤 In Real-Time Scenario - Owner Uploads Project In GitHub RepoMay 25, 2021. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.

About WPF-command

NA

OUR TRAINING