FloatWindowCollection.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Drawing;
  5. using System.Windows.Forms;
  6. namespace WeifenLuo.WinFormsUI.Docking
  7. {
  8. public class FloatWindowCollection : ReadOnlyCollection<FloatWindow>
  9. {
  10. internal FloatWindowCollection()
  11.             : base(new List<FloatWindow>())
  12. {
  13. }
  14. internal int Add(FloatWindow fw)
  15. {
  16. if (Items.Contains(fw))
  17. return Items.IndexOf(fw);
  18. Items.Add(fw);
  19.             return Count - 1;
  20. }
  21. internal void Dispose()
  22. {
  23. for (int i=Count - 1; i>=0; i--)
  24. this[i].Close();
  25. }
  26. internal void Remove(FloatWindow fw)
  27. {
  28. Items.Remove(fw);
  29. }
  30. internal void BringWindowToFront(FloatWindow fw)
  31. {
  32. Items.Remove(fw);
  33. Items.Add(fw);
  34. }
  35. }
  36. }