private static void NominalChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            AktieQuickInfoControl sender = (AktieQuickInfoControl)d;

            sender.Nominal_Text.Text = string.Format("{0:F2}", (double)e.NewValue);
        }
        public static void SymbolChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            AktieQuickInfoControl sender = (AktieQuickInfoControl)d;

            sender.Symbol_Text.Text = (string)e.NewValue;
        }