Ejemplo n.º 1
0
 /// <summary>
 /// Constructs a WebServiceClientControlCollection, populating with the provided collection.
 /// </summary>
 /// <param name="WebServiceClientControlCollection">Collection to build constructed collection from.</param>
 public WebServiceClientControlCollection(WebServiceClientControlCollection WebServiceClientControlCollection)
 {
     for (int i = 0; i < WebServiceClientControlCollection.Count - 1; i++)
     {
         string key = WebServiceClientControlCollection.BaseGetKey(i);
         base.BaseAdd(key, WebServiceClientControlCollection[i]);
     }
 }
Ejemplo n.º 2
0
 public Enumerator(WebServiceClientControlCollection col)
 {
     _col   = col;
     _index = -1;
 }
			public Enumerator(WebServiceClientControlCollection col)
			{
				_col = col;
				_index = -1;
			}
		/// <summary>
		/// Constructs a WebServiceClientControlCollection, populating with the provided collection.
		/// </summary>
		/// <param name="WebServiceClientControlCollection">Collection to build constructed collection from.</param>
		public WebServiceClientControlCollection(WebServiceClientControlCollection WebServiceClientControlCollection)
		{
			for(int i = 0; i < WebServiceClientControlCollection.Count - 1; i ++)
			{
				string key = WebServiceClientControlCollection.BaseGetKey(i);
				base.BaseAdd(key, WebServiceClientControlCollection[i]);
			}
		}
Ejemplo n.º 5
0
		/// <summary>
		/// Constructs the object with all of the environments primary controls.
		/// </summary>
		/// <param name="qSetExplorer">Primary QSetExplorer.</param>
		/// <param name="qSetMonitor">Primary QSetMonitor.</param>
		/// <param name="propertyGrid">Primary property grid.</param>
		/// <param name="messageViewer">Primary MessageViewer.</param>
		/// <param name="documentContainer">Primary DocumentContainer.</param>
		/// <param name="images">Images component.</param>
		public PrimaryControls(
			QSetExplorer qSetExplorer,
			QSetMonitor qSetMonitor,
			PropertyGrid propertyGrid,
			MessageViewer messageViewer,
			TD.SandDock.DocumentContainer documentContainer,
			Images images)
		{
			_qSetExplorer = qSetExplorer;
			_qSetMonitor = qSetMonitor;
			_propertyGrid = propertyGrid;
			_messageViewer = messageViewer;
			_documentContainer = documentContainer;		
			_images = images;

			_messageBrowserCollection = new MessageBrowserCollection();
			_webServiceClientControlCollection = new WebServiceClientControlCollection();
		}