Ejemplo n.º 1
0
        /// <summary>
        /// Cümle listesinde veya birleştirme listesinde varsa Textini değiştirir.
        /// </summary>
        /// <param name="control">Hedef control</param>
        public static void SetText(this Control control, params object[] format)
        {
            Phrase phs = GlobalVariants.PhraseList[control];

            if (phs == null)
            {
                phs = GlobalVariants.PhraseList[control.Name];
                if (phs == null)
                {
                    return;
                }
            }
            control.Text = phs.GetText(format);
        }