public void BindStyleToFontPanel()
        {
            if (!IsAbleToBindProperty())
            {
                return;
            }

            Model.StyleOption styleOption     = _styleOptions[StylesVariationListSelectedId.Number];
            string            styleFontFamily = styleOption.GetFontFamily();
            int targetIndex = -1;

            for (int i = 0; i < FontFamilies.Count; i++)
            {
                if (styleFontFamily == FontFamilies[i])
                {
                    targetIndex = i;
                    break;
                }
            }
            SelectedFontId.Number = targetIndex;
        }