UltraPanel2.cs 982 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Infragistics.Win.Misc;
  6. using System.Windows.Forms;
  7. namespace Core.Mes.Client.Comm.Control
  8. {
  9. public class UltraPanel2 : UltraPanel
  10. {
  11. public UltraPanel2()
  12. {
  13. //this.DoubleBuffered = true;
  14. ////this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  15. ////SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint |
  16. //// ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw |
  17. //// ControlStyles.SupportsTransparentBackColor, true);
  18. //SetStyle(ControlStyles.AllPaintingInWmPaint |
  19. // ControlStyles.OptimizedDoubleBuffer, true);
  20. //SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor, true);
  21. }
  22. }
  23. }