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
About WM
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (6)
Mike Gold (4)
David Anderson (4)
Kirtan Patel (4)
Anubhav Chaudhary (3)
Scott Lysle (3)
Vishnujeet Kumar (3)
Sanjeeb Lenka (3)
Shweta Lodha (2)
John O Donnell (2)
Delpin Susai Raj (2)
Sam Hobbs (2)
Vishal Babuks (2)
C# Curator (2)
Rahat Yasir (2)
Resco (2)
Bruno Leonardo Michels (1)
CSharp TV (1)
Jejji Arora (1)
Santhosh Kumar Jayaraman (1)
Nirav Daraniya (1)
Prabhat Kumar (1)
Farhan Ahmed (1)
Varun Setia (1)
Zain Ul Hassan (1)
Selva Ganapathy (1)
Abhishek Kumar Ravi (1)
Rafal Wozniak (1)
Manikandan M (1)
Sateesh Arveti (1)
Hiren Soni (1)
Raj Kumar (1)
Ehsan Sajjad (1)
Mohan Kumar (1)
Mohammad Elsheimy (1)
Gurpreet Arora (1)
Karthikeyan (1)
Oren Cohen (1)
Shantha Kumar T (1)
Amit Choudhary (1)
Sachin Kalia (1)
Abhimanyu K Vatsa (1)
Rikam Palkar (1)
john donell (1)
Gaurav Kumar (1)
Praveen Kumar (1)
Mujeeb Rahman (1)
Nipun Tomar (1)
Nicolas Luque (1)
Gnanavel Sekar (1)
Usama Shahid (1)
Juan Francisco Morales Larios (1)
Ck Nitin (1)
Sivaraman Dhamodaran (1)
Vipul Kelkar (1)
Mukesh Kumar (1)
Praveen K (1)
Sahil Maheshwary (1)
Sara Silva (1)
Sanjay Kumar (1)
Akhil Garg (1)
Sagar Pardeshi (1)
Kailash Chandra Behera (1)
S Thangaraju (1)
Shirsendu Nandi (1)
monuchacko (1)
klaus_salchner (1)
Ibrahim Ersoy (1)
Alex 0 (1)
David Furshpan (1)
Related resources for WM
No resource found
Change Style Dynamically in Various Ways Using AngularJS
10/8/2024 9:20:34 AM.
This article explores three methods for dynamically changing styles in AngularJS applications. It covers how to implement external Angular.js files, create CSS classes, and use the ng-class directive
Show Data in Dynamic Grid Using AngularJS
10/1/2024 8:21:44 AM.
This article explains how to create a dynamic grid using AngularJS. It covers setting up the AngularJS environment, implementing a ViewModel to manage employee data, and using input fields bound with
CRUD Operations Using Knockout in MVC Application: Part 2
9/16/2024 11:22:32 AM.
This article demonstrates CRUD operations using Knockout.js in an MVC application. It covers the View class, focusing on Knockout bindings, observable arrays, and AJAX calls for creating, editing, and
ViewModel Locator in WPF
8/22/2024 11:04:58 AM.
The ViewModel Locator in WPF (Windows Presentation Foundation) is a design pattern used in the MVVM (Model-View-ViewModel) architecture. It helps manage and provide instances of ViewModels to Views, f
The Cloud Show with Magnus Mårtensson ft. Heather Newman - Ep: 39
8/20/2024 10:06:22 AM.
The show is about cloud leadership and all the important questions relating to cloud projects.
Data Binding in Android Kotlin
7/17/2024 6:52:51 AM.
Data binding in Kotlin refers to the process of establishing a connection between the UI elements of an application and the underlying data model. This technique allows for seamless synchronization be
A Simple WPF Application Implementing MVVM
6/20/2024 10:12:01 AM.
In modern application development using technologies like WPF, Silverlight, and MVVM, several key concepts and components play critical roles. WPF, or Windows Presentation Foundation, revolutionizes W
Explain INotifyPropertyChanged In WPF - MVVM
6/19/2024 11:56:08 AM.
INotifyPropertyChanged in ASP.NET MVC facilitates automatic updating of UI elements when data changes. By implementing this interface, changes in properties like FirstName and LastName dynamically upd
WPF ICommand In MVVM
6/12/2024 10:28:28 AM.
Commands provide a mechanism for the view to update the model in the MVVM architecture. Commands provide a way to search the element tree for a command handler.
Bootstrap Pagination Dynamically In ASP.NET MVC
6/12/2024 9:38:07 AM.
This tutorial guides you through dynamically implementing Bootstrap pagination in ASP.NET MVC using Entity Framework and ViewModel. Set up SQL Server, MVC architecture, and Bootstrap for efficient pag
MVVM Architecture
6/5/2024 8:14:53 AM.
Learn about the significance of software architecture like MVVM, which separates UI from backend, enhancing maintainability. Explore MVVM's components: Model (business logic), View (UI), ViewModel
Managing Data With ViewModel In ASP.NET MVC
5/21/2024 9:36:47 AM.
This article will tell you almost everything about ViewModel in ASP.NET MVC. I am writing this article to tell you the basic to advance foremost concepts about ways to manage the data and organize the
Handling UI Control's Events in ViewModel (Prism 5.0)
4/29/2024 9:58:03 AM.
This article explains how to data bind a command from my viewModel to an event. In other words, how to make the code-behind not contain any code related to event handlers of a control.
Learn Simple MVVM and Command Bindings in 15 Mins
4/25/2024 8:11:17 AM.
MVVM, a pattern for WPF/Silverlight, separates Model, View, and ViewModel, simplifying UI development. Models represent entities, Views are UI designs, ViewModels manage data binding, and Binders conn
Rebooting a Remote Server using WMI
4/23/2024 8:20:03 AM.
Windows Management Instrumentation (WMI) facilitates remote management and system administration tasks, including remote shutdown and monitoring. However, it requires administrative privileges and pos
How to Get External Drives and Peripherals Using WMI Query
4/22/2024 9:26:33 AM.
Learn how to efficiently retrieve information about external drives and peripherals on Windows using WMI queries. Explore the power of WMI (Windows Management Instrumentation) for detecting and managi
Xamarin.Forms - EventToCommand Behavior in MVVM ViewModel
4/11/2024 10:35:24 AM.
Xamarin.Forms EventToCommand behavior facilitates MVVM by binding events to ViewModel commands. It streamlines event handling, promoting the separation of concerns within the application architecture.
Programmatic Installation and Configuration of Microsoft Loopback Adapter
3/4/2024 6:24:06 AM.
This article will show how to programmatically install, configure and manage virtual network adapters such as Microsoft Loopback Adapter using Devcon tool, WMI and netsh command.
Implementation of Collection View in .NET MAUI
2/2/2024 5:29:04 AM.
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. Co
Service Management in C#.NET
11/24/2023 7:21:13 AM.
This article discusses how to create a Web Application to manage the services running on our system.
Get Property And Method Name Of WMI Classes Programmatically In C#
10/30/2023 9:31:12 AM.
This article shows how you can get property name and method name programmatically instead of writing explicitly.
Simple MVVM Pattern in WPF
10/30/2023 5:47:50 AM.
This article describes the basic use and functionality of the MVVM pattern in WPF.
Mapping ViewModel To Model Using Implicit Conversion Operator In C#
9/18/2023 9:08:46 AM.
Mapping a ViewModel to a Model in C# using an implicit conversion operator is a technique used to simplify the process of transferring data between these two related classes. ViewModels are typically
Find And Close The Window Using WIN API
9/10/2023 10:43:56 PM.
This article explains how to find and close the window using Win API. To find and close a window using the Windows API in a C# application, you can use the FindWindow function to locate the window by
Retrieving Motherboard Serial Number Via WMI
9/6/2023 6:50:30 AM.
Learn how to retrieve Motherboard serial number and other related information via Windows Management Instrumentation (WMI) in .NET.
View-Model in Vue.js
9/1/2023 7:50:51 AM.
Explore Vue.js's View-Model architecture, central to building efficient interfaces. Learn what it is, its importance, and how to use it for separation of concerns, reactivity, and organized code.
Introduction to System.Management Namespace
9/1/2023 4:53:08 AM.
The article provides an insight on the use of System.Management namespace and the advantages of WMI.
Clicking a Button in Another Application
7/27/2023 9:20:10 AM.
This article provides a simple sample of an application that clicks a button in another application.
Postman - Newman CLI Tool
1/3/2023 7:08:05 AM.
In this article, you will learn about Postman Newman CLI Tool.
How To Generate Reports Using Postman Tool
1/2/2023 6:30:14 AM.
In this article, we will look at how to generate reports using Postman Tool.
A Simple Guide to WMI Provider
11/17/2022 7:08:43 AM.
This article purpose is to describe how to develop a WMI provider in the .NET framework. There are several incentives for writing this article including the lack of simple examples for writing WMI pro
Windows Management Instrumentation in C#
8/29/2022 6:28:24 AM.
In this article, I will explain to you about Windows Management Instrumentation in C#.
Image Conversion Utility in C#
4/6/2022 11:33:07 AM.
This article describes a very easy approach to building an image conversion utility that will permit the user to open a supported image type and convert it to another supported image type.
How To Subscribe Group Members To Get Group Conversations And Events
1/31/2022 5:40:54 PM.
How to enable the group settings to send copies of group conversations and events to group members
Administration of Windows Machine Programmatically
2/3/2021 5:59:14 AM.
Being a .Net developer, Automation engineer or IT administrator we always in need of dealing with windows machine configuration and settings.
MVVM (Model View ViewModel) Introduction: Part 1
2/3/2021 4:35:12 AM.
In this article, I’ll talk about how to enhance WPF, Silverlight and Windows Phone application productivity, maintainability and testability with UI based Design Patterns.
Dictionary Requires a Model Item of Type System.Collections.Generic.IEnumerable in MVC 3
2/1/2021 7:35:18 AM.
I encountered an error in the implementation of returning multiple models to a single view.
What is Model and ViewModel in MVC Pattern?
1/8/2021 9:49:39 AM.
Model and ViewModel are two things we always hear about in MVC. In this article I will show you the differences between them.
DataContext And Autowire In WPF
1/4/2021 9:19:05 PM.
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.
Monitoring Remote Log Remotely using WMI in C# and .NET
12/2/2020 11:04:34 PM.
WMI (Windows Management Instrumentation) is a component of the Microsoft operating system that allows you to monitor virtually every piece of the system (either locally or remotely) as well as control
Working with DataView and DataViewManager Events in ADO.NET
11/2/2020 10:17:44 AM.
In this article I will explain working with DataView and DataViewManager Events in ADO.NET.
ADO.NET: What's changed in .NET Beta 2?
11/2/2020 9:11:16 AM.
ADO.NET API is one of the changed APIs. In this article, I've covered some of ADO.NET changes in Beta 2.
Using DataSet, DataView, and DataViewManager
10/30/2020 2:56:58 AM.
In this article I will explain about DataSet, DataView and DataViewManager, Typed and Untyped DataSets.
DataAdapter Example in ADO.NET
10/30/2020 2:34:30 AM.
In this article I will explain about DataAdapter Example in ADO.NET
Understanding ADO.NET Components
10/29/2020 4:28:12 AM.
In this article I will explain about ADO.NET Components.
DataAdapter in ADO.NET
10/29/2020 1:36:33 AM.
In this article I will explain about DataAdapter in ADO.NET.
Interrogating Your Printer Queues with WMI
5/21/2020 4:43:00 AM.
In response to a newsgroup query here is the code needed to view the printer queues on your system.
MVVM Architecture with LiveData Android
3/15/2020 12:45:34 PM.
In this article, you will learn about MVVM Architecture with LiveData Android.
Improvements in HTML Editor With Visual Studio 2015
1/9/2020 3:39:25 AM.
In this article we will learn about the improvements in the HTML Editor with Visual Studio 2015 Preview.
Xamarin.Forms - MVVM ViewModel Locator Using MVVM Light
10/21/2019 9:27:53 AM.
In this article, you will learn how to create a MVVM ViewModel Locator using MVVM Light in Xamarin.Forms.
WPF MVVM Pattern: A Simple Tutorial for Absolute Beginners
5/21/2019 4:14:50 AM.
After some research I cracked the very basic steps in MVVM pattern, and then trying to write MVVM tutorials for absolute beginners.
MVVM in WPF
2/28/2019 4:45:09 AM.
In this article, I'll review some of those best practices for designing and implementing client applications with WPF. By leveraging some core features of WPF in conjunction with the Model-View-Vi
WMI Implementation With ORMi
1/11/2019 3:30:11 PM.
I have written a new .NET library named as ORMi to communicate to WMI (Windows Management Instrumentation). In this article, let's get an overview of ORMi.
ASP.NET MVC5 - Passing ViewModel Using JQuery Ajax And Strongly Typed View
10/31/2018 11:21:07 PM.
In this article, I will demonstrate how to work with ViewModel using JQuery Ajax and Strongly Typed view.
ViewBag, ViewData And ViewModel In ASP.NET
10/11/2018 4:07:30 AM.
Earlier in our previous articles, we created this action to display the student record. In this action we passed model to our view by passing an argument to a view method
WPF MVVM - Working With Dialogs
2/25/2018 12:52:52 AM.
Avoid creating views from within your view models by building a dialog service. Facilitates unit testing.
WPF MVVM - Working With Tab Controls And Tab Content
2/21/2018 7:04:24 AM.
Learn how to create, open, and close tabs effectively using the MVVM pattern with WPF. Facilitates unit testing.
Introduction To Model-View-ViewModel Pattern For WPF
2/19/2018 5:06:57 AM.
Introduction to the MVVM (Model-View-ViewModel) pattern in WPF.
Auto ViewModelLocator In MVVM Pattern
5/25/2017 12:07:07 AM.
Auto ViewModelLocator in MVVM pattern.
Get Started MVVM Light With WPF (Separation Of ViewModel) - Part Two
3/17/2017 12:21:52 AM.
This article familiarizes you with MVVM Light with WPF (Separation of ViewModel).
MFC - Message Handling and InvalidateRect()
1/22/2017 11:57:12 PM.
This video explains MFC Message Handling and the role of InvalidateRect() in updating the Client Area.
DependencyObject In ViewModelBase - Good Or Bad
1/4/2017 11:55:17 AM.
This article discusses one of the best practices which is to be followed while designing MVVM based solution.
Getting detailed Information about Windows User Accounts with WMI and C#
4/13/2016 3:11:47 AM.
Article about how to get detailed information about windows users through WMI.
Windows Management Instrumentation (WMI)
4/13/2016 3:08:31 AM.
In this article we are going to write a windows forms application that helps us to retrieve a list of services on a remote computer and operate on them(start/stop).
Prefer To Use ViewModel In ASP.NET MVC
12/1/2015 12:30:17 AM.
In this article, you will learn the use of ViewModel in ASP.NET MVC.
MVVM (Model View ViewModel) With WPF
11/18/2015 11:55:07 AM.
This article is intended for the WPF -MVVM beginners with an assumption that they are aware of MVVM model.
Universal Windows Platform With MVVM
11/14/2015 2:25:48 AM.
In this article you will learn how to create Universal Windows Platform with MVVM.
Overview of Model View ViewModel (MVVM)
7/10/2015 5:15:50 PM.
This article explains Model View ViewModel (MVVM).
Xamarin Guide 11: Create a LoginView
4/28/2015 11:41:15 AM.
This article illustrates how to create a LoginView in Xamarian.
Binding GridViewModel in ASP.Net 4.5
3/28/2015 3:09:56 PM.
In this article you will learn how to use GridViewModel Binding in ASP.NET 4.5.
Prism and MVVM Step-By-Step
1/23/2015 12:09:26 PM.
This article will help you learn Prism and MVVM framework.
WPF Enterprise MVVM Session 1: Building a base ViewModel class
1/13/2015 11:27:50 PM.
First video in a new series on what I consider to be enterprise MVVM development for WPF. We will begin covering practical application development scenarios that you will encounter in the real-world, and focus on building high quality, low maintenance, enterprise solutions.
Windows API Window Using C#
11/8/2014 11:58:58 PM.
This program will create a very simple window that just says "Hello" but it does using just the Windows GUI API in C#.
MVVM, Simple Way You Can Think
10/26/2014 3:41:34 AM.
This article exlains MVVM in the simplest way you can think of.
SP.UI.ModalDialog.showModalDialog() Does Not Work Under SharePoint 2013
7/29/2014 8:25:43 PM.
When using SP.UI.ModalDialog.showModalDialog(options) in SharePoint 2013 the calls to showModalDialog failed with the message that the method cannot be found.
Model View ViewModel (MVVM) Introduction: Part 3
12/24/2013 3:38:02 AM.
So for this article I'll focus on that, one more important core component of MVVM, Events (property and collection change events) or INotifyPropertyChanged.
Model View ViewModel (MVVM) Introduction: Part 2
12/16/2013 2:26:55 AM.
This article focuses fully on the logic and implementation of ICommand.
How System Resource Information is Retrieved From WMI
10/14/2013 5:16:33 PM.
In this article we learn how to retrieve system resource information using the ManagementObjectSearcher class.
Get the Registry Details of Your System Using WMI Class
9/23/2013 1:41:10 PM.
This article describes how to get the Registry details of your System Using a WMI Class. Here I will get the information from the Win32_Registry class.
Get the Time and Date Details of Your System Using WMI Class
9/18/2013 3:21:24 PM.
This article describes how to get the Time and Date details of your System Using a WMI Class. Here I will get the information from the Win32_CurrentTime class.
Get the Keyboard Details of Your System in Windows Form
8/23/2013 1:30:37 PM.
This article describes how to get the Keyboard details of your System . Here I will get the information from the Win32_Keyboard class.
Image Viewer in VB.NET in VB.NET
12/1/2012 3:23:23 AM.
This program allows you to open and view image files including JPEG, GIF, WMF and other images. Program also provides options to stretch and shrink them, rotate at different angles through all axes and save them in different formats
Prevent CD Autoplays in VB.NET
11/9/2012 10:11:22 AM.
This article describes the approach used programmatically to prevent a CD from going into auto play mode.
Interrogating your Printer Queries with WMI
11/8/2012 9:53:50 AM.
In response to a newsgroup query here is the code needed to view the printer queues on your system. Once again this is achieved using Windows Management Instrumentation or WMI. Note this code will display all printer queues if there are documents waiting to be printed. To test this open up a printer queue and pause the printer then use notepad or word etc and print to the paused printer.
MVC4 Mobile Application Using View Model Architecture
10/3/2012 4:00:46 PM.
In this article I will describe how to build or create a small MVC4 mobile application with View Model Concept architecture.
Windows Management Instrumentation (WMI)
9/30/2012 5:07:26 AM.
WMI is a component of the Microsoft operating system that allows you to monitor virtually every piece of the system either locally or remotely.
In-depth Look at WMI and Instrumentation: Part I
9/30/2012 4:16:45 AM.
WMI provides a consistent programmatic access to management information in the enterprise. It uses the typical provider and consumer concept where you have on one side components providing this management information while on the other side management applications can subscribe and consume it.
Using Genetic Algorithms to come up with Sudoku Puzzles
9/23/2012 6:48:32 AM.
Sudoku is a new type of puzzle from Japan that will keep you entertained for a time and may even get you hooked. This article demonstrates how to generate a fully populated Sudoku grid using genetic algorithms.
Using CapDetect Tool in Windows Phone 7
5/20/2012 7:26:47 AM.
CapDetect is a recently added Windows Phone 7 Developer Tool. You can add application-specific capabilities in your WMManifest file.
WM apps: graphically as attractive as iPhone apps, plus full of functionality
5/19/2012 5:33:00 AM.
Can Windows Mobile apps be graphically as attractive as the ones for iPhone, while bringing rich functionality? Let’s see what opportunities we have and how much can be achieved.
Build Dynamics CRM mobile Apps That Work on WM, TabletPC, iPhone or iPad
5/19/2012 4:08:28 AM.
Resco MobileCRM Studio is a developer platform that assists in the development of mobile applications which are used as extensions to Microsoft Dynamics CRM.
.NET Color ListBox
5/15/2012 3:54:55 PM.
.Net ListBox control itself works fine, however as a base class for further derivation it is fundamentally flawed. The root of evil is in the Windows API ListBox. .Net ListBox is just a wrapper for this control.
Obtain System Information using WMI Calls
5/15/2012 1:56:36 PM.
This article shall describe an approach to using Windows Management Instrumentation (WMI) calls to obtain system information.
Strategy for a Confirmation Dialog in an MVVM World in Silverlight
12/22/2010 5:59:59 PM.
Working with Silverlight in an asynchronous world can sometimes be a challenge. Here is an example of a confirmation dialog that provides some direction into that temporally ambigious environment.
Understanding and Using MVVM Light in Silverlight and Blend - Part I
11/24/2010 11:59:48 AM.
MVVM is an architecture that helps you design Silverlight apps right. If you want to simplify your move to MVVM then take a look at MVVM Light. This article is introduction to the MVVM Light Toolkit and how you can start to take advantage of its rich feature set
MVVM Design Pattern
9/27/2010 1:17:28 PM.
I started with the very basic concept of creating, binding and a few features as I needed them. The following code is simple, extensible, and provides an easier way to follow some MVVM concepts. My approach is that the MVVM design pattern is a set of recommendations not a set of rules.
Get MAC Address of Network Card using WMI and C#
8/11/2010 11:08:02 AM.
Get MAC Address of Network Cards using WMI and C#
Get Laptop Battery Status using C# and WMI
8/8/2010 12:51:48 PM.
Article about how to get status of laptop battery
Getting CD/DVD Drive capabilities using WMI and C#
8/4/2010 11:16:00 PM.
article about how to Get Different capabilities of CD_Drive like read/write using WMI
Understanding Web Forms and Web services in ASP.NET
2/7/2010 11:31:50 PM.
In this article I will explain Web Forms and Web services in ASP.NET.