Click here to Skip to main content
15,885,767 members
Articles / Desktop Programming / WPF

Monitoring Process Statistics in C# WPF

Rate me:
Please Sign up or sign in to vote.
4.85/5 (24 votes)
25 Jul 2009CPOL3 min read 127.4K   7.8K   79  
In this article, I will explain the performance monitoring of any instance in the Form of statistics and graphs as well.
<Window x:Class="MemoryPerformanceMonitoring.Window2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
				xmlns:c="http://research.microsoft.com/DynamicDataDisplay/1.0"
    Title="PerformanceCounter Graph" Height="363" Width="552">
	<Grid>
		<c:ChartPlotter Name="plotter">
			<c:Header Content="Performance monitor"/>
		</c:ChartPlotter>
	</Grid>
</Window>

	

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions