Example #1
0
 public void PopulateData()
 {
     ToolboxTab tab = null;
     tabDictionary = new Dictionary<string, ToolboxTab>(); 
     foreach (var toolboxItem in toolboxItems)
     {
         if (tabDictionary.ContainsKey(toolboxItem.Metadata.Category))
             tab = tabDictionary[toolboxItem.Metadata.Category];
         else
         {
             tab = new ToolboxTab();
             tab.Name = toolboxItem.Metadata.Category;
             tab.ToolboxItems = new Collection<ToolboxItem>();
             tabDictionary.Add(toolboxItem.Metadata.Category, tab);
         }
         ToolboxItem ti = new ToolboxItem();
         ti.Type = toolboxItem.Value;
         ti.Name = toolboxItem.Value.Name;
         tab.ToolboxItems.Add(ti);
     }
 }
 ///  <summary>
 ///    Adds a <see cref="ToolboxLibrary.ToolboxItem"/> with the specified value to the 
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to add.</param>
 ///  <returns>
 ///    The index at which the new element was inserted.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.AddRange"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public int Add(ToolboxItem value) {
     return List.Add(value);
 }
 ///  <summary>
 ///       Initializes a new instance of <see cref="ToolboxLibrary.ToolboxItemCollection"/> containing any array of <see cref="ToolboxLibrary.ToolboxItem"/> objects.
 ///  </summary>
 ///  <param name="value">
 ///       A array of <see cref="ToolboxLibrary.ToolboxItem"/> objects with which to intialize the collection
 ///  </param>
 ///  <remarks></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public ToolboxItemCollection(ToolboxItem[] value) {
     this.AddRange(value);
 }
 ///  <summary>
 ///     Removes a specific <see cref="ToolboxLibrary.ToolboxItem"/> from the 
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to remove from the <see cref="ToolboxLibrary.ToolboxItemCollection"/> .</param>
 ///  <remarks><exception cref="System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void Remove(ToolboxItem value) {
     List.Remove(value);
 }
 ///  <summary>
 ///  Inserts a <see cref="ToolboxLibrary.ToolboxItem"/> into the <see cref="ToolboxLibrary.ToolboxItemCollection"/> at the specified index.
 ///  </summary>
 ///  <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
 ///  <param name=" value">The <see cref="ToolboxLibrary.ToolboxItem"/> to insert.</param>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.Add"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void Insert(int index, ToolboxItem value) {
     List.Insert(index, value);
 }
 ///  <summary>
 ///    Returns the index of a <see cref="ToolboxLibrary.ToolboxItem"/> in 
 ///       the <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to locate.</param>
 ///  <returns>
 ///  The index of the <see cref="ToolboxLibrary.ToolboxItem"/> of <paramref name="value"/> in the 
 ///  <see cref="ToolboxLibrary.ToolboxItemCollection"/>, if found; otherwise, -1.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.Contains"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public int IndexOf(ToolboxItem value) {
     return List.IndexOf(value);
 }
 ///  <summary>
 ///  Copies the <see cref="ToolboxLibrary.ToolboxItemCollection"/> values to a one-dimensional <see cref="System.Array"/> instance at the 
 ///    specified index.
 ///  </summary>
 ///  <param name="array">The one-dimensional <see cref="System.Array"/> that is the destination of the values copied from <see cref="ToolboxLibrary.ToolboxItemCollection"/> .</param>
 ///  <param name="index">The index in <paramref name="array"/> where copying begins.</param>
 ///  <remarks><exception cref="System.ArgumentException"><paramref name="array"/> is multidimensional. <para>-or-</para> <para>The number of elements in the <see cref="ToolboxLibrary.ToolboxItemCollection"/> is greater than the available space between <paramref name="arrayIndex"/> and the end of <paramref name="array"/>.</para></exception>
 ///  <exception cref="System.ArgumentNullException"><paramref name="array"/> is <see langword="null"/>. </exception>
 ///  <exception cref="System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than <paramref name="array"/>"s lowbound. </exception>
 ///  <seealso cref="System.Array"/>
 ///  </remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void CopyTo(ToolboxItem[] array, int index) {
     List.CopyTo(array, index);
 }
 ///  <summary>
 ///  Gets a value indicating whether the 
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> contains the specified <see cref="ToolboxLibrary.ToolboxItem"/>.
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to locate.</param>
 ///  <returns>
 ///  <see langword="true"/> if the <see cref="ToolboxLibrary.ToolboxItem"/> is contained in the collection; 
 ///   otherwise, <see langword="false"/>.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.IndexOf"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public bool Contains(ToolboxItem value) {
     return List.Contains(value);
 }
 ///  <summary>
 ///  Copies the elements of an array to the end of the <see cref="ToolboxLibrary.ToolboxItemCollection"/>.
 ///  </summary>
 ///  <param name="value">
 ///    An array of type <see cref="ToolboxLibrary.ToolboxItem"/> containing the objects to add to the collection.
 ///  </param>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.Add"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void AddRange(ToolboxItem[] value) {
     for (int i = 0; (i < value.Length); i = (i + 1)) {
         this.Add(value[i]);
     }
 }
		private void PopulateToolboxItems(XmlNode tabNode, ToolboxTab toolboxTab)
		{
			if(tabNode==null)
				return;

			XmlNode toolboxItemCollectionNode = tabNode[Strings.ToolboxItemCollection];
			if(toolboxItemCollectionNode==null)
				return;

			XmlNodeList toolboxItemNodeList = toolboxItemCollectionNode.ChildNodes;
			if(toolboxItemNodeList==null)
				return;

			ToolboxItemCollection toolboxItems = new ToolboxItemCollection();

			foreach(XmlNode toolboxItemNode in toolboxItemNodeList)
			{
				if(toolboxItemNode==null)
					continue;

				XmlNode typeNode = toolboxItemNode[Strings.Type];
				if(typeNode==null)
					continue;

				bool found = false;
				System.Reflection.Assembly[] loadedAssemblies = System.AppDomain.CurrentDomain.GetAssemblies();
				for(int i=0; i<loadedAssemblies.Length && !found;i++)
				{
					System.Reflection.Assembly assembly = loadedAssemblies[i];
					System.Type[] types = assembly.GetTypes();
					for(int j=0;j<types.Length && !found;j++)
					{
						System.Type type = types[j];
						if(type.FullName == typeNode.InnerXml.ToString()) 
						{
							ToolboxItem toolboxItem = new ToolboxItem();
							toolboxItem.Type = type;
							toolboxItems.Add(toolboxItem);
							found = true;
						}
					}
				}
			}
			toolboxTab.ToolboxItems = toolboxItems;
			return;
		}
Example #11
0
 ///  <summary>
 ///    Adds a <see cref="ToolboxLibrary.ToolboxItem"/> with the specified value to the
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to add.</param>
 ///  <returns>
 ///    The index at which the new element was inserted.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.AddRange"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public int Add(ToolboxItem value)
 {
     return(List.Add(value));
 }
Example #12
0
 ///  <summary>
 ///     Removes a specific <see cref="ToolboxLibrary.ToolboxItem"/> from the
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to remove from the <see cref="ToolboxLibrary.ToolboxItemCollection"/> .</param>
 ///  <remarks><exception cref="System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void Remove(ToolboxItem value)
 {
     List.Remove(value);
 }
Example #13
0
 ///  <summary>
 ///  Inserts a <see cref="ToolboxLibrary.ToolboxItem"/> into the <see cref="ToolboxLibrary.ToolboxItemCollection"/> at the specified index.
 ///  </summary>
 ///  <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
 ///  <param name=" value">The <see cref="ToolboxLibrary.ToolboxItem"/> to insert.</param>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.Add"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public void Insert(int index, ToolboxItem value)
 {
     List.Insert(index, value);
 }
Example #14
0
 ///  <summary>
 ///    Returns the index of a <see cref="ToolboxLibrary.ToolboxItem"/> in
 ///       the <see cref="ToolboxLibrary.ToolboxItemCollection"/> .
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to locate.</param>
 ///  <returns>
 ///  The index of the <see cref="ToolboxLibrary.ToolboxItem"/> of <paramref name="value"/> in the
 ///  <see cref="ToolboxLibrary.ToolboxItemCollection"/>, if found; otherwise, -1.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.Contains"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public int IndexOf(ToolboxItem value)
 {
     return(List.IndexOf(value));
 }
Example #15
0
 ///  <summary>
 ///  Gets a value indicating whether the
 ///    <see cref="ToolboxLibrary.ToolboxItemCollection"/> contains the specified <see cref="ToolboxLibrary.ToolboxItem"/>.
 ///  </summary>
 ///  <param name="value">The <see cref="ToolboxLibrary.ToolboxItem"/> to locate.</param>
 ///  <returns>
 ///  <see langword="true"/> if the <see cref="ToolboxLibrary.ToolboxItem"/> is contained in the collection;
 ///   otherwise, <see langword="false"/>.
 ///  </returns>
 ///  <remarks><seealso cref="ToolboxLibrary.ToolboxItemCollection.IndexOf"/></remarks>
 ///  <history>
 ///      [dineshc] 3/26/2003  Created
 ///  </history>
 public bool Contains(ToolboxItem value)
 {
     return(List.Contains(value));
 }