| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Infragistics.Win.Misc;
- using System.Windows.Forms;
- namespace Core.Mes.Client.Comm.Control
- {
- public class UltraPanel2 : UltraPanel
- {
- public UltraPanel2()
- {
- //this.DoubleBuffered = true;
- ////this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
- ////SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint |
- //// ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw |
- //// ControlStyles.SupportsTransparentBackColor, true);
- //SetStyle(ControlStyles.AllPaintingInWmPaint |
- // ControlStyles.OptimizedDoubleBuffer, true);
- //SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor, true);
- }
- }
- }
|