private void Refresh() { //Очищаю DataGrid критериев и проектов DataGridCtg.DataContext = null; DataGridPrj.DataContext = null; DataGridCsh.DataContext = null; //Заполняю основную таблицу _csh = new Csh(); _csh.Fill(DataGridCsh); ButtonAdd.Content = "Добавить"; //Заполняю критерии _ctg = new Ctg(DataGridCtg, TextBoxFrom); _prj = new Prj(_ctg); _stt = new Stt(_ctg); //Обнуляем переменные и сумму ButtonAdd.IsEnabled = false; TextBoxSum.Text = "0.00"; TextBoxComment.Text = ""; DateCsh.Text = DateTime.Now.ToString(CultureInfo.CurrentCulture); TextBoxTo.Text = "Куда"; TextBoxFrom.Text = "Откуда"; TextBoxSumFrom.Text = ""; TextBoxSumTo.Text = ""; TextBoxFrom.Focus(); }
private void GetCshRowValues() { DataRowView dataRow = (DataRowView)DataGridCsh.SelectedItem; if (dataRow == null) { return; } _csh = null; _csh = new Csh(); _csh.CshId = dataRow.Row.ItemArray[0].ToString(); _csh.GetRowValues(); DateCsh.Text = _csh.CshDate.ToShortDateString(); TextBoxFrom.Text = _csh.SttIdFrom.SttName; TextBoxTo.Text = _csh.SttIdTo.SttName; TextBoxSum.Text = _csh.CshSum.ToString(CultureInfo.InvariantCulture); TextBoxComment.Text = _csh.CshNote; }