zoukankan      html  css  js  c++  java
  • Silverlight动态载入调用XAML资源

     

         以多语言为例子:

        ResourceDictionary resourceDictionary = new ResourceDictionary(); //新建资源集合

                var culture = CultureInfo.CurrentCulture;//获取本地Culture

                if (culture.Name != "zh-CN")

                {

                    Application.LoadComponent(resourceDictionary, new Uri("/ETiger_MarketTrack;component/Language/Chinese.xaml", UriKind.Relative));

                }

                else

                {

                    Application.LoadComponent(resourceDictionary, new Uri("/ETiger_MarketTrack;component/Language/English.xaml", UriKind.Relative));

                }

        //将资源集合添加到AppResource中,注意这些代码必须在使用这些资源的控件初始化之前

                Application.Current.Resources.MergedDictionaries.Add(resourceDictionary);

  • 相关阅读:
    13 数据库主从
    12 数据备份
    11 锁机制
    12 日志
    10 索引(二)
    09 索引
    update kernel 3.10-3.12
    haproxy para config
    mysql slave to master
    storage disk
  • 原文地址:https://www.cnblogs.com/yubinfeng/p/3698232.html
Copyright © 2011-2022 走看看