我想要一个" Custom" ListBox中的项目,以便用户可以输入除预设可选值之外的自定义值。
这是我的XAML代码:
<ListBox SelectedValue="{Binding SomeValue}"
SelectedValuePath="Tag"
Style="{StaticResource HorizontalRadioButtonList}">
<!-- style from http://stackoverflow.com/a/4120034/1813487 -->
<ListBoxItem Tag="10"
Content="10"/>
<ListBoxItem Tag="20"
Content="20"/>
<ListBoxItem Tag="30"
Content="30"/>
<ListBoxItem x:Name="CustomListBoxItem">
<TextBox Text="{Binding ElementName=CustomListBoxItem,
Mode=OneWayToSource,
UpdateSourceTrigger=PropertyChanged,
Path=Tag}"/>
</ListBoxItem>
</ListBox>
<TextBlock Text="{Binding SomeValue}"/>
如果用户在TextBox中输入内容,如何更新SomeValue?目前,ListBox未检测到标记已更改,并且未更新SomeValue。
答案 0 :(得分:0)
我认为您可以使用附加到TextBox的行为来实现这一点,您可以在其中签署TextChanged事件,每次触发时都可以将ListBoxItem的标记设置为TextBox的文本。
我做了类似的事情,但是使用了Microsoft.Expression.Interactivity:
<ListBoxItem x:Name="UniqueValue" Tag="40">
<TextBox x:Name="TextBox" Text="40">
<i:Interaction.Triggers>
<i:EventTrigger EventName="TextChanged">
<ei:ChangePropertyAction PropertyName="Tag"
TargetObject="{Binding ElementName=UniqueValue}"
Value="{Binding Text,
ElementName=TextBox}" />
<ei:ChangePropertyAction PropertyName="SomeValue"
TargetObject="{Binding}"
Value="{Binding Text,
ElementName=TextBox,
Converter={StaticResource StringToIntConverter}}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</TextBox>
</ListBoxItem>
基本上,每次更改文本时,属性Tag都会将其值设置为书写文本,然后(为了保持ListBoxItem的选择),viewmodel的属性SomeValue的值设置为相同的文本。
命名空间:
xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
所需的装配:
System.Windows.Interactivity
Microsoft.Expression.Interactions
答案 1 :(得分:0)
在这里我是如何做到的,它也不是完美的解决方案:
XAML:
<ListBox SelectedValue="{Binding SomeValue}"
SelectedValuePath="Tag"
Style="{StaticResource HorizontalRadioButtonList}"
x:Name="CustomListBox">
<!-- ...items... -->
<ListBoxItem x:Name="CustomListBoxItem">
<TextBox Text="{Binding ElementName=CustomListBoxItem,
Mode=OneWayToSource,
UpdateSourceTrigger=PropertyChanged,
Path=Tag}"
TextChanged="UpdateCustomValue"
x:Name="CustomTextBox"/>
</ListBoxItem>
</ListBox>
<TextBlock Text="{Binding SomeValue}"/>
代码:
private void UpdateUniqueValue(object sender, TextChangedEventArgs e)
{
var listBox = sender == CustomTextBox? CustomListBox: null;
if (listBox != null)
{
var textBox = (TextBox) sender;
try // so that invalid values are not allowed
{
listBox.SelectedValue = textBox.Text;
}
catch
{
textBox.Text = listBox.SelectedValue.ToString();
}
}
}
这是一种解决方法,也没有考虑验证器,但至少不允许输入无效值。