BlipFace.View.Controls.Pager.GetCurrentPageIndexPropetyMetadata C# (CSharp) Method

GetCurrentPageIndexPropetyMetadata() private static method

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

            return pm;
        }