BlipFace.View.Controls.Pager.GetCurrentPageIndexPropetyMetadata C# (CSharp) 메소드

GetCurrentPageIndexPropetyMetadata() 개인적인 정적인 메소드

private static GetCurrentPageIndexPropetyMetadata ( ) : System.Windows.PropertyMetadata
리턴 System.Windows.PropertyMetadata
        private static PropertyMetadata GetCurrentPageIndexPropetyMetadata()
        {
            PropertyMetadata pm = new PropertyMetadata();
            pm.DefaultValue = 1;
            pm.PropertyChangedCallback = new PropertyChangedCallback(CurrentPageIndexPropertyChanged);

            return pm;
        }