public void RefreshUIFromCompanyOrPersonalOptions()
 {
     CtrlCurrency.UpdateCurrencyFormatFromCache();
     if (_Nullable)
     {
         UpdateDisplayFromNullableValue();
         return;
     }
     UpdateDisplayFromValue();
 }
 private void Init()
 {
     //CurrencyCacheListManager.Instance.WeakSubscribe(new EventHandler(CtrlCurrency_CacheUpdatedEvent));
     CtrlCurrency.UpdateCurrencyFormatFromCache();
     //OptionControlsManager.Instance.RegisterOptionControls(this);
 }
 private void CtrlCurrency_CacheUpdatedEvent(object sender, EventArgs e)
 {
     CtrlCurrency.UpdateCurrencyFormatFromCache();
 }