您好我正在使用下面给出的 xaml 文件和代码。我想获得两个类别,一个是当前类别,另一个是删除类别。如果我删除一个类别,它应该去添加当前类别。我对此一无所知。所以请任何人告诉我如何解决这个问题。
<StackPanel>
<TextBlock Text="Current categories"
Style="{StaticResource PhoneTextLargeStyle}"/>
<ListBox x:Name="AddingList" ItemsSource="{Binding name}" SelectionChanged="AddingList_SelectionChanged_1"/>
<TextBlock Text="Removed categories"
Style="{StaticResource PhoneTextLargeStyle}" />
<ListBox x:Name="RemoveList" ItemsSource="{Binding name}" SelectionChanged="RemoveList_SelectionChanged_1"/>
</StackPanel>
我的 xaml.cs 代码
private void Button_Click_1(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/CategoriesPage.xaml?" + NotchsList11, UriKind.Relative));
}
我正在使用编辑按钮,如何将列表框项目从编辑按钮传递到类别页面以及如何删除和添加列表框项目。
我的输出想要如下图,所以请帮我一些