我希望您能帮助我解决我无法解决的问题。
在我的Xamarin.Forms应用程序中,用户可以添加到SQLite数据库:
public class Car
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Text { get; set; }
public int PickerValue { get; set; }
}
PickerValue的类型为INT,因为我认为选择器的选定值给出了索引INT值。我错了吗?
用户使用以下项添加项目:
<Editor Placeholder="Enter name" Text="{Binding Text}" />
<Picker x:Name="myPicker" Title="Value:">
<Picker.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>value 1</x:String>
<x:String>value 2</x:String>
</x:Array>
</Picker.ItemsSource>
</Picker>
在另一页上,使用ListView显示项目:
<Label Text="{Binding Text}"/>
<Label Text="{Binding PickerValue}"/>
当我在ListView上选择一个项目时-编辑页面会为我打开-在同一页面中我添加了新产品(上面的代码),并填充了数据库中的字段。我可以在那里编辑它们。
我希望能够将选定的Picker值保存到SQLite,然后在另一页上可以显示它(或选定值的索引)。有人可以帮助我如何进行这种绑定吗?
如果可能的话-我想在XAML中这样做。
我基于https://docs.microsoft.com/pl-pl/xamarin/get-started/quickstarts/database?pivots=windows
制作了该项目答案 0 :(得分:1)
这是我正在运行的GIF。
首先,我在模型中添加一个属性,这里添加了Gender属性。
public class Note
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Text { get; set; }
public DateTime Date { get; set; }
public string Gender { get; set; }
}
在将数据插入数据库之前,应像下面的代码一样设置此属性。应将myPicker.SelectedItem;
转换为string
async void OnSaveButtonClicked(object sender, EventArgs e)
{
var note = (Note)BindingContext;
note.Date = DateTime.UtcNow;
note.Gender = (string)myPicker.SelectedItem;
await App.Database.SaveNoteAsync(note);
await Navigation.PopAsync();
}
在另一页中,我们仅绑定了Gender属性,就像下面的代码一样。
<ListView x:Name="listView"
Margin="20"
ItemSelected="OnListViewItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Label Text="{Binding Text}"></Label>
<Label Text="{Binding Gender}"></Label>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
这是我的演示。
https://github.com/851265601/databaseDemo
我只添加选择器的SelectedItem,
<Picker x:Name="myPicker" Title="Value:" SelectedItem="{Binding Gender}">
<Picker.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>female</x:String>
<x:String>male</x:String>
</x:Array>
</Picker.ItemsSource>
</Picker>
我再次为我的项目更新。 https://github.com/851265601/Datademo3/blob/master/Datademo2/Notes/App.xaml.cs