3

我在 xaml 中有一个文本框。
但是当我导航到其他页面时收到此消息。
textBox 在输入、焦点和失去焦点时动态监控。
(检测是否包含文本并更改文本颜色。)
一切正常,我不知道异常会做什么。

这是文本框 xaml

<TextBox Name="SearchBox" TextChanged="OnTextChanged" Height="72" InputScope="Search" GotFocus="OnGotFocus" KeyDown="OnKeyDown" LostFocus="OnLostFocus"
    Text="{Binding LocalizedResources.Desc_InputKey, Mode=TwoWay, Source={StaticResource LocalizedStrings}}" >
    <TextBox.Foreground>
        <SolidColorBrush x:Name="SearhBoxColor" Color="{StaticResource PhoneTextBoxReadOnlyColor}"/>
    </TextBox.Foreground>
</TextBox>

这是抛出的异常:

System.Windows.Data Error: ConvertBack cannot convert value 'hhh' (type 'System.String'). BindingExpression: Path='LocalizedResources.Desc_InputKey' DataItem='MyProject.LocalizedStrings' (HashCode=15848707); target element is 'System.Windows.Controls.TextBox' (Name='SearchBox'); target property is 'Text' (type 'System.String')..
   System.ArgumentException: Property set method not found.
   at System.Reflection.RuntimePropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture)
   at System.Reflection.RuntimePropertyInfo.SetValue(Object obj, Object value, Object[] index)
   at System.Windows.CLRPropertyListener.set_Value(Object value)
   at System.Windows.PropertyAccessPathStep.set_Value(Object value)
   at System.Windows.Data.BindingExpression.UpdateValue().

我该如何摆脱它?

4

1 回答 1

1

您正在尝试使用双向绑定从本地化资源中绑定文本。它不能工作,因为这些资源是只读的。

我相信你只是想设置你的文本框的初始值。因此,您应该绑定到您自己的属性,并使用资源对其进行初始化。

首先,在您的视图模型中创建属性:

public string SearchBoxColorText { get; set; }

在代码中的某处初始化属性(在类构造函数中,在OnNavigatedTo事件中,任何适合您的工作流程):

this.SearchBoxColorText = LocalizedStrings.StaticlocalizedResources.Desc_InputKey;

然后将文本框绑定到此属性:

<TextBox Name="SearchBox" Text="{Binding SearchBoxColorText}" >
于 2013-02-03T17:00:03.307 回答