private void CheackStateTile()
 {
     if (!LockState)
     {
         MiMFa_Regularization.ChildControlsLayout(this, LayoutMode);
         for (int i = 0; i < this.Controls.Count; i++)
         {
             ((TileButton)this.Controls[i]).ShowImage = ViewImage;
             ((TileButton)this.Controls[i]).ShowLabel = ViewLabel;
         }
     }
 }
Example #2
0
 private void CheackState()
 {
     if (!LockState)
     {
         for (int i = 0; i < p_Main.Controls.Count; i++)
         {
             if (p_Main.Controls[i] is SlideButton)
             {
                 ((SlideButton)p_Main.Controls[i]).ShowImage = ViewImage;
                 ((SlideButton)p_Main.Controls[i]).ShowLabel = ViewLabel;
             }
         }
         MiMFa_Regularization.ChildControlsLayout(p_Main, LayoutMode);
     }
 }
Example #3
0
 private void CheckStateTile()
 {
     if (!string.IsNullOrEmpty(ConfigurationAddress) && Sortable)
     {
         SORTER = new MiMFa_ControlSorter(ConfigurationAddress, this);
         SORTER.ControlsSort(this);
     }
     if (ColorOrder != MiMFa_SelectFromRange.Null || ColorRange != MiMFa_Coloristic.ColorRange.Null)
     {
         MiMFa_Coloristic.AllChildsControlColorChange(this, ColorOrder, ColorRangeList);
     }
     if (!LockState)
     {
         MiMFa_Regularization.ChildControlsLayout(this, LayoutMode);
     }
 }
Example #4
0
 private void CheackState()
 {
     if (!string.IsNullOrEmpty(ConfigurationAddress))
     {
         //SORTER = new MiMFa_Sorter(ConfigurationAddress, this);
         //SORTER.ControlsSort(this);
     }
     if (!LockState)
     {
         MiMFa_Regularization.ChildControlsLayout(this, LayoutMode);
         for (int i = 0; i < this.Controls.Count; i++)
         {
             if (this.Controls[i] is SlideButton)
             {
                 ((SlideButton)this.Controls[i]).BackgroundImage = BackgroundImageItems;
                 ((SlideButton)this.Controls[i]).ShowImage       = ViewImage;
                 ((SlideButton)this.Controls[i]).ShowLabel       = ViewLabel;
             }
         }
     }
 }
Example #5
0
 private void CheackState()
 {
     if (!string.IsNullOrEmpty(ConfigurationAddress))
     {
         SORTER = new MiMFa_ControlSorter(ConfigurationAddress, this);
         SORTER.ControlsSort(this);
     }
     if (!base.LockState)
     {
         MiMFa_Regularization.ChildControlsLayout(this, base.LayoutMode);
         for (int i = 0; i < this.Controls.Count; i++)
         {
             this.Controls[i].Click += new EventHandler(base.IncrimentByClick);
             if (this.Controls[i] is SubSlidingMenu)
             {
                 ((SubSlidingMenu)this.Controls[i]).ViewImage = base.ViewImage;
                 ((SubSlidingMenu)this.Controls[i]).ViewLabel = base.ViewLabel;
                 ((SubSlidingMenu)this.Controls[i]).OpenStart = _OpenStart;
             }
         }
     }
 }