在UWP中将ComboBox绑定到Enum字典

阿巴尼

我有一个UWP应用,将ComboBox绑定到Dictionary。除了一个问题,这是一种工作。当我尝试在视图模型中设置绑定的SelectedValue时,ComboBox重置为空状态。

我尝试在WPF中执行完全相同的操作,但没有这个问题。在网上查看时,我发现页面与WPF完全相同,但是在UWP上找不到任何内容。

更新绑定值时,我需要怎么做才能使ComboBox不重置?

这是一个简化的示例。我正在使用PropertyChanged.Fody和MvvmLightLibs

查看模型:

[ImplementPropertyChanged]
public class ViewModel
{
    public ICommand SetZeroCommand { get; set; }
    public ICommand ShowValueCommand { get; set; }

    public ViewModel()
    {
        SetZeroCommand = new RelayCommand(SetZero);
        ShowValueCommand = new RelayCommand(ShowValue);
    }
    public Numbers Selected { get; set; } = Numbers.One;
    public Dictionary<Numbers, string> Dict { get; } = new Dictionary<Numbers, string>()
    {
        [Numbers.Zero] = "Zero",
        [Numbers.One] = "One",
        [Numbers.Two] = "Two"
    };

    private async void ShowValue()
    {
        var dialog = new MessageDialog(Selected.ToString());
        await dialog.ShowAsync();
    }

    private void SetZero()
    {
        Selected = Numbers.Zero;
    }

    public enum Numbers
    {
        Zero,
        One,
        Two
    }
}

Xaml:

<Page
    x:Class="UwpBinding.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:UwpBinding"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    DataContext="{Binding MainWindow, Source={StaticResource Locator}}">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <ComboBox Margin="105,163,0,0" ItemsSource="{Binding Dict}" DisplayMemberPath="Value" SelectedValuePath="Key" SelectedValue="{Binding Selected, Mode=TwoWay}"/>
        <Button Content="Show" Command="{Binding ShowValueCommand}" Margin="25,304,0,304"/>
        <Button Content="Set to 0" Command="{Binding SetZeroCommand}" Margin="10,373,0,235"/>
    </Grid>
</Page>
厦门猫王-MSFT

我做了一个基本的演示,并重现了您的问题。经过研究,我发现了问题:Combox.SelectedValue不适用于Enumeration

当前的解决方法是SelectedIndex改用。

例如:在您的ViewModel中,更改如下代码:

public int Selected { get; set; } = 1;
...
private void SetZero()
{
    Selected = 0;
}
...
private async void ShowValue()
{
    Numbers tmp=Numbers.Zero;
    switch (Selected)
    {
        case 0: tmp = Numbers.Zero;
           break;
        case 1:tmp = Numbers.One;
           break;
        case 2:tmp = Numbers.Two;
           break;
    }
    var dialog = new MessageDialog(tmp.ToString());
    await dialog.ShowAsync();
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章