在选择器选项上对列表进行排序。

huangapple go评论51阅读模式
英文:

Sort a list on picker selection

问题

我的应用程序是使用Xamarin Forms制作的。
我需要一个基于我的数据进行选择的选择器。如果数据在2018年到2023年之间,选择器应该显示年份,即2018年、2019年、2020年、2021年、2022年和2023年。

例如,
如果数据是从2018年到2023年,选择器应该创建年份2018年、2019年、2020年、2021年、2023年。

英文:

My application is made in Xmaman forms
I need a picker with selection based on my data in the list picker should show years if data have between 2018 to 2023 it should show picker selection 2018 2019 2020 2021 2022 and 2013

For example
If data is from 2018 to 2023 so picker should create years 210 2019 2020 2021 2023

答案1

得分: 1

以下是翻译好的部分:

有许多不同的方法在C#中执行这个操作:

var years = Enumerable.Range(start, end);
foreach (var x in years)
    MyPicker.Items.Add(x);
英文:

there are many different ways to do this in C#

var years = Enumerable.Range(start,end);
foreach(var x in years)
  MyPicker.Items.Add(x);

huangapple
  • 本文由 发表于 2023年6月5日 13:15:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/76403631.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定