private void _grid_CellValueChanged(object sender, DataGridViewCellEventArgs e) { int index = e.RowIndex; if (_parameters[index].Type != StrategyParameterType.TimeOfDay) { return; } StrategyParameterTimeOfDay param = new StrategyParameterTimeOfDay("temp", 0, 0, 0, 0); try { string[] array = new[] { "", _grid.Rows[index].Cells[1].EditedFormattedValue.ToString() }; param.LoadParamFromString(array); } catch (Exception exception) { _grid.Rows[index].Cells[1].Value = ((StrategyParameterTimeOfDay)_parameters[index]).Value.ToString(); } }
private void PaintTable() { _grid.Rows.Clear(); for (int i = 0; i < _parameters.Count; i++) { DataGridViewRow row = new DataGridViewRow(); row.Cells.Add(new DataGridViewTextBoxCell()); row.Cells[0].Value = _parameters[i].Name; if (_parameters[i].Type == StrategyParameterType.Bool) { DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell(); cell.Items.Add("False"); cell.Items.Add("True"); cell.Value = ((StrategyParameterBool)_parameters[i]).ValueBool.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.String) { DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell(); StrategyParameterString param = (StrategyParameterString)_parameters[i]; for (int i2 = 0; i2 < param.ValuesString.Count; i2++) { cell.Items.Add(param.ValuesString[i2]); } cell.Value = param.ValueString; row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.Int) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterInt param = (StrategyParameterInt)_parameters[i]; cell.Value = param.ValueInt.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.Decimal) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterDecimal param = (StrategyParameterDecimal)_parameters[i]; cell.Value = param.ValueDecimal.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.TimeOfDay) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterTimeOfDay param = (StrategyParameterTimeOfDay)_parameters[i]; cell.Value = param.Value.ToString(); row.Cells.Add(cell); } _grid.Rows.Add(row); } }
private void PaintTable() { _grid.Rows.Clear(); for (int i = 0; i < _parameters.Count; i++) { DataGridViewRow row = new DataGridViewRow(); row.Cells.Add(new DataGridViewTextBoxCell()); row.Cells[0].Value = _parameters[i].Name; if (_parameters[i].Type == StrategyParameterType.Bool) { DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell(); cell.Items.Add("False"); cell.Items.Add("True"); cell.Value = ((StrategyParameterBool)_parameters[i]).ValueBool.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.String) { StrategyParameterString param = (StrategyParameterString)_parameters[i]; if (param.ValuesString.Count > 1) { DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell(); for (int i2 = 0; i2 < param.ValuesString.Count; i2++) { cell.Items.Add(param.ValuesString[i2]); } cell.Value = param.ValueString; row.Cells.Add(cell); } else if (param.ValuesString.Count == 1) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); cell.Value = param.ValueString; row.Cells.Add(cell); } } else if (_parameters[i].Type == StrategyParameterType.Int) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterInt param = (StrategyParameterInt)_parameters[i]; cell.Value = param.ValueInt.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.Decimal) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterDecimal param = (StrategyParameterDecimal)_parameters[i]; cell.Value = param.ValueDecimal.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.TimeOfDay) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterTimeOfDay param = (StrategyParameterTimeOfDay)_parameters[i]; cell.Value = param.Value.ToString(); row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.Button) { DataGridViewButtonCell cell = new DataGridViewButtonCell(); row.Cells[0].Value = ""; cell.Value = _parameters[i].Name; // StrategyParameterButton param = (StrategyParameterButton)_parameters[i]; row.Cells.Add(cell); } else if (_parameters[i].Type == StrategyParameterType.Label) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); StrategyParameterLabel param = (StrategyParameterLabel)_parameters[i]; if (param.RowHeight == 0) { param.RowHeight = 25; } row.Cells[0].Value = param.Label; row.Height = param.RowHeight; row.Cells[0].Style.Font = new System.Drawing.Font("Areal", param.TextHeight); row.Cells[0].Style.ForeColor = param.Color; row.Cells.Add(cell); } _grid.Rows.Add(row); } }