1

我正在尝试本地化与 WP7 上的工具包关联的 DatePicker 和 TimePicker,但我不确定如何访问 Header 和应用程序栏文本。我找不到任何显示完成这些任务的方法的链接。是否有任何有用的链接,或者有人知道如何完成这些链接?

4

3 回答 3

2
  1. 下载工具包最新版本(2011 年 11 月)的源代码和示例的最简单方法,该工具包默认本地化为DatePickerTimePicker.
  2. 将它作为项目引用添加到您的解决方案。

如果您拥有 2011 年 11 月之前的 Toolkit 版本,

  1. 再次将其添加为解决方案中的项目参考
  2. 在项目方面,您的解决方案中采用了它。添加必要的 resx 文件。您可以看到有一个默认的 Resources.resx 文件,其中包含日期选择器的英文文本。为其他语言添加必要的 resx 文件。
于 2012-07-20T05:35:32.030 回答
1

这很简单:参数 - 语言。Xml代码:

<toolkit:DatePicker Language="ru-RU" Margin="-12, 0" Value="{Binding BirthDate, Mode=TwoWay}" />
于 2014-05-19T13:32:14.620 回答
0

另一个不修改 XAML 源的替代方法是在页面加载后修改“HeaderTitle”TextBlock。

    /// <summary>
    /// Called from app.xaml.cs if the user navigates to the DatePickerPage
    /// </summary>
    /// <param name="page">The page.</param>
    public static void DatePickerHook(PhoneApplicationPage page)
    {
        // Somehow modify the text on the top of the page...
        LoopThroughControls(page, (ui => {
            var tb = ui as TextBlock;
            if (tb != null && tb.Name == "HeaderTitle")
            {
                tb.Text = "<<Local Translation>>";
            }
        }));
    }

    /// <summary>
    /// Applies an action to every element on a page
    /// </summary>
    /// <param name="parent">The parent.</param>
    /// <param name="modifier">The modifier.</param>
    private static void LoopThroughControls(UIElement parent, Action<UIElement> modifier)
    {
        int count = VisualTreeHelper.GetChildrenCount(parent);
        if (count > 0)
        {
            for (int i = 0; i < count; i++)
            {
                UIElement child = (UIElement)VisualTreeHelper.GetChild(parent, i);
                modifier(child);
                LoopThroughControls(child, modifier);
            }
        }
        return;
    }

以下是描述 app.xaml.cs 修改的博客文章的链接:http ://blog.dotnetframework.org/2015/11/09/localise-datepicker-in-wp8-silverlighttoolkit-using-hooks/

于 2015-11-09T13:08:50.100 回答