private void AddFileInputToParametersPanel(string text, FileInputType t, Object value, int x, int y) { FileInput fi = new FileInput(); fi.Name = text; fi.Type = t; fi.Location = new Point(x, y * 30 + 5); if (value != null) { MatrixPath mp = (MatrixPath)value; fi.MatrixPath = mp.Path; fi.MatrixSize = mp.Size; } parametersPanel.Controls.Add(fi); }
private void AddFileInputToParametersPanel(String text, FileInputType t, Object value, Int32 x, Int32 y) { FileInput fi = new FileInput { Name = text, Type = t, Location = new Point(x, y * 30 + 5) }; if (value != null) { MatrixPath mp = (MatrixPath)value; fi.MatrixPath = mp.Path; fi.MatrixSize = mp.Size; } parametersPanel.Controls.Add(fi); }