我是C#的新编码,我使用Laravel(php)进行背景编码。
我需要使用CRUD构建应用程序(Windows 8.1)。但是在编辑中我遇到了问题,我需要知道如何将所选项目传递到其他xaml文件中。
我需要将MainPage的选定项目传递给Editar
MainPage.xaml.cs中
namespace SQLiteDemo { /// /// An empty page that can be used on its own or navigated to within a Frame. /// public sealed partial class MainPage : Page { SQLiteAsyncConnection conn = new SQLiteAsyncConnection("dados.sqlite"); public MainPage() { this.InitializeComponent(); conn.CreateTableAsync(); } private async void Listar_Click(object sender, RoutedEventArgs e) { await Atualiza(); } private async Task Atualiza() { var query = conn.Table(); listBox.ItemsSource = await query.ToListAsync(); } private void Novo_Click(object sender, RoutedEventArgs e) { Frame.Navigate(typeof(Novo)); } private void Editar_Click(object sender, RoutedEventArgs e) { /* var u = listBox.SelectedItem as User; u.nome = "nome alterado"; await conn.UpdateAsync(u); await Atualiza(); */ listBox.SelectedItems.Add(listBox.SelectedItem as User); var u = listBox.SelectedItem as User; Frame.Navigate(typeof(SQLiteDemo.Editar), u); } } }
Editar.xaml
<Grid HorizontalAlignment="Left" Height="520" Margin="55,115,0,0" VerticalAlignment="Top" Width="1155">
<TextBox x:Name="Nome" HorizontalAlignment="Left" Margin="70,60,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="40" Width="990" PlaceholderText="Nome"/>
<TextBox x:Name="Email" HorizontalAlignment="Left" Margin="70,140,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="40" Width="990" PlaceholderText="Email"/>
</Grid>
Editar.xaml.cs
namespace SQLiteDemo
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
///
public sealed partial class Editar : Page
{
SQLiteAsyncConnection conn = new SQLiteAsyncConnection("dados.sqlite");
public Editar()
{
this.InitializeComponent();
conn.CreateTableAsync<User>();
}
private void SalvarEdit_Click(object sender, RoutedEventArgs e)
{
/*
var u = listBox.SelectedItem as User;
u.nome = Nome.Text;
u.email = Email.Text;
conn.UpdateAsync(u);
*/
}
private void Voltar_Click(object sender, RoutedEventArgs e)
{
Frame.Navigate(typeof(MainPage));
}
}
}
一些截图:
答案 0 :(得分:3)
您将参数右侧传递给左侧只是为了在导航后获取它。
将此功能添加到Editar.xaml.cs
protected override void OnNavigatedTo(NavigationEventArgs e)
{
var user = e.Parameter as User;
Nome.Text = user.nome;
Email.Text = user.email;
}