コード例 #1
0
        /// <summary>
        /// Add a new Window to the collection.  Intended for
        /// internal use by EnumWindows only.
        /// </summary>
        /// <param name="hWnd">Window handle to add</param>
        public void Add(IntPtr hWnd)
        {
            EnumWindowsItem item = new EnumWindowsItem(hWnd);

            this.InnerList.Add(item);
        }
コード例 #2
0
ファイル: EnumWindows.cs プロジェクト: heon21st/flashdevelop
		/// <summary>
		/// Add a new Window to the collection.  Intended for
		/// internal use by EnumWindows only.
		/// </summary>
		/// <param name="hWnd">Window handle to add</param>
		public void Add(IntPtr hWnd)
		{
			EnumWindowsItem item = new EnumWindowsItem(hWnd);
			this.InnerList.Add(item);
		}