BrightIdeasSoftware.ObjectListView.HideOverlays C# (CSharp) 메소드

HideOverlays() 공개 메소드

Hide any overlays.
This is only a temporary hiding -- the overlays will be shown the next time the ObjectListView redraws.
public HideOverlays ( ) : void
리턴 void
        public virtual void HideOverlays()
        {
            foreach (GlassPanelForm glassPanel in this.glassPanels) {
                glassPanel.HideGlass();
            }
        }
ObjectListView