示例#1
0
        void UpdateFont()
        {
            Font currentFont = GetSelectedFont();

            lTest.Font       = currentFont;
            updating         = true;
            cbSystem.Checked = FontSelectionControl.FontEquals(defaultFont, currentFont);
            updating         = false;
        }
示例#2
0
        public override bool IsChanged()
        {
            bool res = (
                (!FontSelectionControl.FontEquals(options.ToolbarsFont, fscData.CurrentFont)
                )
                );

            return(res);
        }
示例#3
0
        public override bool IsChanged()
        {
            bool res = !FontSelectionControl.FontEquals(options.TextControlFontProp, fscData.CurrentFont);

            return(res);
        }
示例#4
0
 public void Init()
 {
     updating         = true;
     cbSystem.Checked = FontSelectionControl.FontEquals(defaultFont, CurrentFont);
     updating         = false;
 }