Example #1
0
 private void Init()
 {
     controls = new FluidControlCollection(this);
     BeginInit();
     Initialize();
     EndInit();
 }
Example #2
0
        private bool AreAllControOpaque(FluidControlCollection controls)
        {
            bool result = true;

            foreach (FluidControl c in controls)
            {
                if (!c.Visible)
                {
                    continue;
                }
                Rectangle r = c.Bounds;
                if (c.Width <= 0 || c.Height <= 0)
                {
                    continue;
                }
                if (c.IsTransparent)
                {
                    result = false;
                    break;
                }
            }
            return(result);
        }
Example #3
0
 private void Init()
 {
     controls  = new FluidControlCollection(this);
     ForeColor = Color.Empty;
     Initialize();
 }