Choreoh.MainWindow.onlyShowThisSegment C# (CSharp) 메소드

onlyShowThisSegment() 개인적인 메소드

private onlyShowThisSegment ( HoverButton danceSegment ) : void
danceSegment HoverButton
리턴 void
        private void onlyShowThisSegment(HoverButton danceSegment)
        {
            foreach (HoverButton hb in segmentList)
            {
                if (hb != danceSegment)
                    hb.Visibility = Visibility.Hidden;
            }
        }