private static void OnOptionChanged(DependencyObject dp, DependencyPropertyChangedEventArgs e)
        {
            GlyphProperties option = dp as GlyphProperties;

            option.Reset();
            if (option.OptionChanged != null)
            {
                option.OptionChanged(option, EventArgs.Empty);
            }
        }