Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#

Runtime Object Editor

Rate me:
Please Sign up or sign in to vote.
4.93/5 (136 votes)
30 May 20068 min read 299.8K   10.9K   307  
A powerful window/object editor to be used at runtime that allows viewing/changing of properties and fields, method invocations, and object hierarchy navigation.
/* ****************************************************************************
 *  RuntimeObjectEditor
 * 
 * Copyright (c) 2005 Corneliu I. Tusnea
 * 
 * This software is provided 'as-is', without any express or implied warranty.
 * In no event will the author be held liable for any damages arising from 
 * the use of this software.
 * Permission to use, copy, modify, distribute and sell this software for any 
 * purpose is hereby granted without fee, provided that the above copyright 
 * notice appear in all copies and that both that copyright notice and this 
 * permission notice appear in supporting documentation.
 * 
 * Corneliu I. Tusnea (corneliutusnea@yahoo.com.au)
 * www.acorns.com.au
 * ****************************************************************************/


using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Reflection;

namespace RuntimeObjectEditor.Tabs.Methods
{
	/// <summary>
	/// Property descriptor for a Parameter of a Method.
	/// </summary>
	internal class ParameterPropertyDescriptor : PropertyDescriptor
	{
		private readonly ParameterInfo param;
		private readonly MethodPropertyDescriptor methodDesc;
		private object localValue;

		public ParameterPropertyDescriptor(MethodPropertyDescriptor methodDesc, ParameterInfo param)
			: base(param.Name + " (" + param.ParameterType.Name + ")", null)
		{
			this.methodDesc = methodDesc;
			this.param = param;
		}

		public override bool CanResetValue(object component)
		{
			return false;
		}

		public override void ResetValue(object component)
		{
		}

		public override void SetValue(object component, object value)
		{
			localValue = value;
			methodDesc.Invoke();
		}

		public override bool ShouldSerializeValue(object component)
		{
			return false;
		}

		public override object GetValue(object component)
		{
			return localValue;
		}

		public override bool IsReadOnly
		{
			get { return false; }
		}


		public override Type PropertyType
		{
			get { return param.ParameterType; }
		}

		public override Type ComponentType
		{
			get { return param.ParameterType; }
		}

		public override TypeConverter Converter
		{
			get { return base.Converter; }
		}

		protected override void FillAttributes(IList attributeList)
		{
			base.FillAttributes(attributeList);
			attributeList.Add(new RefreshPropertiesAttribute(RefreshProperties.Repaint));
			attributeList.Add(new DesignerAttribute(typeof (MethodDesigner), typeof (IDesigner)));
		}

	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Technical Lead OneSaas - Cloud Integrations Made Easy
Australia Australia

Comments and Discussions