示例#1
0
 public ExportImportProgressForm(FishingGearInventory fishingGearInventory, string fileName, GearInventoryForm parentForm)
 {
     InitializeComponent();
     FileName             = fileName;
     FishingGearInventory = fishingGearInventory;
     FishingGearInventory.InventoryLevel += OnInventoryLevel;
     BatchSize   = 25;
     _parentForm = parentForm;
 }
 public ImportInventoryXMLForm(FishingGearInventory inventory)
 {
     InitializeComponent();
     _inventory = inventory;
 }