Добрый день, вопрос состоит в том а можно ли создавать формы и элементы формы с помощью кода. Вопрос распространяется как на код fastreporta, так и на код из с#? Спасибо
Можно, конечно. Вот простой пример, создающий форму и кнопку ОК:
/// DialogPage form = new DialogPage();
/// report.Pages.Add(form);
/// // set the width and height in pixels
/// form.Width = 200;
/// form.Height = 200;
/// form.Name = "Form1";
/// // create a button
/// ButtonControl button = new ButtonControl();
/// button.Location = new Point(20, 20);
/// button.Size = new Size(75, 25);
/// button.Text = "The button";
/// // add the button to the form
/// form.Controls.Add(button);
Комментарии
Можно, конечно. Вот простой пример, создающий форму и кнопку ОК:
/// DialogPage form = new DialogPage();
/// report.Pages.Add(form);
/// // set the width and height in pixels
/// form.Width = 200;
/// form.Height = 200;
/// form.Name = "Form1";
/// // create a button
/// ButtonControl button = new ButtonControl();
/// button.Location = new Point(20, 20);
/// button.Size = new Size(75, 25);
/// button.Text = "The button";
/// // add the button to the form
/// form.Controls.Add(button);