mousclick上的空文本框与WPF中的语言更改相结合

时间:2016-07-11 09:00:18

标签: wpf textbox focus

我有一个带有默认文字的文本框。当我对文本框进行聚焦时,它会被清除,所以我可以写,如果我没有写任何东西而没有写任何内容,则会重新出现默认文本。

我还有两个用于选择语言的单选按钮。这些语言以xaml资源文件的形式提供,文本框中的默认文本使用DynamicResource连接到该文本。

我的问题是,只要我没有专注于文本框,语言更改才会起作用。如果我对文本框进行聚焦,然后在不改变任何内容的情况下对其进行取消聚焦,则文本框不再改变语言。

我猜这是因为一旦它被更改(清除),它就不再与动态资源相关联,因为WPF将我的onfocus更改视为用户输入,但我可以&#39 ;即使我点击了文本框,也要弄清楚如何解决这个问题并让它改变语言。

第二个文本框没有任何焦点行为,并且在那个文本框中,语言变化可以正常工作,即只要我还没有真正写出某些东西,它就会改变语言。

MainWindow xaml:

<Window x:Class="Textbox_langauge_buggseek.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:Textbox_langauge_buggseek"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <TextBox x:Name="TextBox" HorizontalAlignment="Left" Height="46" Margin="84,55,0,0" TextWrapping="Wrap" Text="{DynamicResource ResourceKey=TB}" VerticalAlignment="Top" Width="334" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus"/>
    <TextBox x:Name="TextBox_Copy" HorizontalAlignment="Left" Height="46" Margin="84,123,0,0" TextWrapping="Wrap" Text="{DynamicResource ResourceKey=TB}" VerticalAlignment="Top" Width="334"/>
    <RadioButton x:Name="En" Content="En" GroupName="Lang" HorizontalAlignment="Left" Margin="391,216,0,0" VerticalAlignment="Top" Checked="En_Checked" IsChecked="True"/>
    <RadioButton x:Name="Se" Content="Se" GroupName="Lang" HorizontalAlignment="Left" Margin="391,234,0,0" VerticalAlignment="Top" Checked="Se_Checked"/>

</Grid>
</Window>

MainWindows cs:

using System;
using System.Windows;
using System.Windows.Controls;

namespace Textbox_langauge_buggseek
{
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        SetLanguageDictionary();
    }

    //*****************************************************************************************

    private void TextBox_GotFocus(object sender, RoutedEventArgs e)
    {
        TextBox box = sender as TextBox;
        box.Text = box.Text == (string)this.Resources["TB"] ? string.Empty : box.Text;
    }

    private void TextBox_LostFocus(object sender, RoutedEventArgs e)
    {
        TextBox box = sender as TextBox;
        box.Text = box.Text == string.Empty ? (string)this.Resources["TB"] : box.Text;
    }

    //*****************************************************************************************

    private void En_Checked(object sender, RoutedEventArgs e)
    {
        SetLanguageDictionary("En");
    }

    private void Se_Checked(object sender, RoutedEventArgs e)
    {
        SetLanguageDictionary("Se");
    }

    //*****************************************************************************************

    private void SetLanguageDictionary(string language = "En")
    {
        ResourceDictionary dict = new ResourceDictionary();
        switch (language)
        {
            case "Se":
                dict.Source = new Uri("..\\Resources\\Se.xaml", UriKind.Relative);
                break;
            default:
                dict.Source = new Uri("..\\Resources\\En.xaml", UriKind.Relative);
                break;
        }
        this.Resources.MergedDictionaries.Add(dict);
    }
}
}

语言xaml:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:system="clr-namespace:System;assembly=mscorlib">

<system:String x:Key="TB">Text in the TextBox!</system:String>

</ResourceDictionary>

Se语言xaml:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:system="clr-namespace:System;assembly=mscorlib">

<system:String x:Key="TB">Text i textrutan!</system:String>

</ResourceDictionary>

1 个答案:

答案 0 :(得分:0)

是的,当您在代码隐藏中设置TextBox.Text时,文本不再知道它必须从Rersource获取值。为避免这种情况,您可以使用纯XAML和触发器更改文本。

删除TextBox的事件处理程序并添加如下样式:

    <TextBox x:Name="TextBox"  HorizontalAlignment="Left" Height="46" Margin="84,55,0,0" TextWrapping="Wrap"  VerticalAlignment="Top" Width="334">
        <TextBox.Style>
            <Style TargetType="{x:Type TextBox}">
                <Style.Triggers>
                    <Trigger Property="IsFocused" Value="true">
                        <Setter Property="Text" Value="" />
                    </Trigger>
                    <Trigger Property="IsFocused" Value="false">
                        <Setter Property="Text" Value="{DynamicResource ResourceKey=TB}" />
                    </Trigger>
                </Style.Triggers>
            </Style>
        </TextBox.Style>
    </TextBox>