コード例 #1
0
 private void clearList_Click(object sender, RoutedEventArgs e)
 {
     App.Invoke(new Action(() =>
     {
         _entities.Clear();
     }));
     InventoryData.Clear();
 }
コード例 #2
0
ファイル: PageInventory.xaml.cs プロジェクト: zgren/dp2
 void ClearList()
 {
     App.Invoke(new Action(() =>
     {
         _entities.Clear();
     }));
     InventoryData.Clear();
     InventoryData.CurrentShelfNo = null;
 }