[MonoDevelop] ItemToolboxNode Confusion

niknak75 nick at npsoftware.co.uk
Sat Mar 31 13:12:02 UTC 2012


Hey there,

I'm trying to implement a loader for my C# control library.  It looks as
follows...

using System;
using MonoDevelop.DesignerSupport.Toolbox;
using System.Collections.Generic;

namespace MyNamespace
{
	
	public class Loader : IToolboxLoader
	{
		
		#region Constructor / Destructor
		
		public Loader ()
		{
		}
		
		#endregion
		
		#region IToolboxLoader Interface

	
System.Collections.Generic.IList<MonoDevelop.DesignerSupport.Toolbox.ItemToolboxNode>
MonoDevelop.DesignerSupport.Toolbox.IToolboxLoader.Load
(MonoDevelop.DesignerSupport.Toolbox.LoaderContext context, string filename)
		{
			throw new System.NotImplementedException ();
		}
	
		string[] IToolboxLoader.FileTypes {
			get {
				throw new System.NotImplementedException ();
			}
		}
				
		#endregion
		
	}
	
}

for some reason even though the IDE auto completes the ItemToolboxNode class
name but still can't find it.  Any ideas?  Many thanks in advance.

Nick.

--
View this message in context: http://mono.1490590.n4.nabble.com/ItemToolboxNode-Confusion-tp4521616p4521616.html
Sent from the Mono - MonoDevelop IDE mailing list archive at Nabble.com.


More information about the Monodevelop-list mailing list