Click here to Skip to main content
15,896,606 members
Articles / Desktop Programming / XAML

Diagnostic Explorer

Rate me:
Please Sign up or sign in to vote.
4.93/5 (41 votes)
29 Nov 2010LGPL315 min read 82.7K   1.5K   120  
A .NET library and website which allows developers to expose and view arbitrary diagnostic information about their .NET processes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace DiagnosticExplorer.Silverlight.Controls
{
	public partial class RegistrationPrompt : UserControl
	{
		public RegistrationPrompt()
		{
			InitializeComponent();
			DataContext = this;
		}

		public event EventHandler OkClicked;
		public event EventHandler CancelClicked;


		public string Prompt
		{
			get { return (string)GetValue(PromptProperty); }
			set { SetValue(PromptProperty, value); }
		}

		// Using a DependencyProperty as the backing store for Prompt.  This enables animation, styling, binding, etc...
		public static readonly DependencyProperty PromptProperty =
				DependencyProperty.Register("Prompt", typeof(string), typeof(NamePrompt), new PropertyMetadata("Prompt goes here"));

		public string ProcessName
		{
			get { return (string)GetValue(ProcessNameProperty); }
			set { SetValue(ProcessNameProperty, value); }
		}

		// Using a DependencyProperty as the backing store for ProcessName.  This enables animation, styling, binding, etc...
		public static readonly DependencyProperty ProcessNameProperty =
				DependencyProperty.Register("ProcessName", typeof(string), typeof(RegistrationPrompt), new PropertyMetadata(null));

		public string ProcessUri
		{
			get { return (string)GetValue(ProcessUriProperty); }
			set { SetValue(ProcessUriProperty, value); }
		}

		// Using a DependencyProperty as the backing store for ProcessUri.  This enables animation, styling, binding, etc...
		public static readonly DependencyProperty ProcessUriProperty =
				DependencyProperty.Register("ProcessUri", typeof(string), typeof(RegistrationPrompt), new PropertyMetadata(null));
		
		private void OnOkClick(object sender, RoutedEventArgs e)
		{
			if (OkClicked != null)
				OkClicked(this, EventArgs.Empty);
		}

		private void OnCancelClick(object sender, RoutedEventArgs e)
		{
			if (CancelClicked != null)
				CancelClicked(this, EventArgs.Empty);
		}
		
	}
}

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 GNU Lesser General Public License (LGPLv3)


Written By
Software Developer
United Kingdom United Kingdom
I am a software developer originally from Auckland, New Zealand. I have lived and worked in London since 2005.

Comments and Discussions