当前位置:  开发笔记 > 编程语言 > 正文

如何从我的选择器中获取价值?Xamarin形成

如何解决《如何从我的选择器中获取价值?Xamarin形成》经验,为你挑选了1个好方法。

我很难string从我的选择器中取出所选的.这是我的代码:

XAML:


    
        info1
        info2 
    

码:

thePicker.SelectedIndex = 1; //here is the problem i suppose, any idea what i should type?
var ourPickedItem = thePicker.Items[thePicker.SelectedIndex];

现在我只得到值"info1",即使我选择了数字2.这与SelectedIndex它有关,所以它只选择"1",但我不知道如何编写代码使其适用于所选项目.



1> Alessandro C..:

你应该看看这个:

picker.SelectedIndexChanged += (sender, args) =>
{
    if (picker.SelectedIndex == -1)
    {
        boxView.Color = Color.Default;
    }
    else
    {
        string colorName = picker.Items[picker.SelectedIndex];
        boxView.Color = nameToColor[colorName];
    }
};

否则在新的Xamarin Forms Release 2.3.4中存在

可绑定的选择器

你可以设置一个ItemSource


并绑定SelectedIndex属性

SelectedIndex="{Binding CountriesSelectedIndex}"

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有