public MarketRelistControl() { try { this.InitializeComponent(); this.AddHeaderCheckBox(); PriceLoader.Init(this.AllSteamItemsGridView, ETableToLoad.RelistTable); } catch (Exception ex) { Logger.Critical(ex); } }
public SaleControl() { try { this.InitializeComponent(); this.allItemsListGridUtils = new AllItemsListGridUtils(this.AllSteamItemsGridView); PriceLoader.Init(this.AllSteamItemsGridView, ETableToLoad.AllItemsTable); PriceLoader.Init(this.ItemsToSaleGridView, ETableToLoad.ItemsToSaleTable); this.InventoryAppIdComboBox.Text = SavedSettings.Get().MarketInventoryAppId; this.InventoryContextIdComboBox.Text = SavedSettings.Get().MarketInventoryContexId; } catch (Exception ex) { Logger.Critical(ex); } }