Hello!
I have a problem when using Windows8TouchTheme,
when alert in Windows8TouchTheme, the punctuations can not show incorrect.
but in windows7theme,it is all right.
4 Answers, 1 is accepted
It seems the website could not attach image Containing the Chinese,
attach a image again.
I didn't manage to reproduce the reported issue, so could you to send us some sample code showing how you're setting the Alert?
Thanks in advance.
Regards,
Yana
Telerik
here is the code:
using System.Windows;
using Telerik.Windows.Controls;
namespace WpfTest
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
StyleManager.ApplicationTheme = new Windows8TouchTheme();
}
private void button_Click(object sender, RoutedEventArgs e)
{
RadWindow.Alert(new DialogParameters
{
Header = "提示信息",
Content = "用户名或密码不正确,登录失败!",
OkButtonContent = "确定",
Owner = Application.Current.MainWindow
});
}
}
}
I have tested the provided code with the latest release of UI for WPF and the punctuation is displayed as expected, please check the attached screenshot.
Could you check the version that you're using?
Regards,
Yana
Telerik