public MainWindow() { InitializeComponent(); //Display InitFormElements(); UnitsStore.Init(GridUnits, SearchTextBox); RecordsStore.Init(GridRecords); }
//*///------------------------------------------------------------------------------------------ //*///------------------------------------------------------------------------------------------ private void FocusRowUnits(object sender, SelectionChangedEventArgs e) { RecordsStore.Display((e.Source as DataGrid).CurrentCell.Item as UnitElement); }
//*///------------------------------------------------------------------------------------------ //*///------------------------------------------------------------------------------------------ //*///------------------------------------------------------------------------------------------ //*///------------------------------------------------------------------------------------------ /*Sub info event handlers*/ //*///------------------------------------------------------------------------------------------ //*///------------------------------------------------------------------------------------------ private void UpdateGrids() { UnitsStore.Update(); RecordsStore.Display(GridUnits.CurrentCell.Item as UnitElement); }