1/3 готова, потом как-нибудь доделаю
This commit is contained in:
parent
04c84290e6
commit
b5c4b431ad
@ -7,4 +7,8 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
36
KopLab1/FormLibrary/PDFTable.Designer.cs
generated
Normal file
36
KopLab1/FormLibrary/PDFTable.Designer.cs
generated
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
namespace FormLibrary
|
||||||
|
{
|
||||||
|
partial class PDFTable
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Обязательная переменная конструктора.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Освободить все используемые ресурсы.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Код, автоматически созданный конструктором компонентов
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||||||
|
/// содержимое этого метода с помощью редактора кода.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
components = new System.ComponentModel.Container();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
79
KopLab1/FormLibrary/PDFTable.cs
Normal file
79
KopLab1/FormLibrary/PDFTable.cs
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
using MigraDoc.DocumentObjectModel;
|
||||||
|
using MigraDoc.DocumentObjectModel.Tables;
|
||||||
|
using MigraDoc.Rendering;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using Document = MigraDoc.DocumentObjectModel.Document;
|
||||||
|
|
||||||
|
|
||||||
|
namespace FormLibrary
|
||||||
|
{
|
||||||
|
public partial class PDFTable : Component
|
||||||
|
{
|
||||||
|
public PDFTable()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public PDFTable(IContainer container)
|
||||||
|
{
|
||||||
|
container.Add(this);
|
||||||
|
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
// Публичный метод для генерации PDF-документа
|
||||||
|
public void GeneratePdf(string fileName, string documentTitle, List<string[,]> tables)
|
||||||
|
{
|
||||||
|
// Проверка на корректность входных данных
|
||||||
|
if (string.IsNullOrWhiteSpace(fileName)) throw new ArgumentException("Имя файла не может быть пустым.");
|
||||||
|
if (string.IsNullOrWhiteSpace(documentTitle)) throw new ArgumentException("Название документа не может быть пустым.");
|
||||||
|
if (tables == null || tables.Count == 0) throw new ArgumentException("Необходимо передать хотя бы одну таблицу.");
|
||||||
|
|
||||||
|
// Создание документа
|
||||||
|
Document document = new Document();
|
||||||
|
Section section = document.AddSection();
|
||||||
|
|
||||||
|
// Установка заголовка документа
|
||||||
|
Paragraph title = section.AddParagraph();
|
||||||
|
title.AddFormattedText(documentTitle, TextFormat.Bold);
|
||||||
|
title.Format.Alignment = ParagraphAlignment.Center;
|
||||||
|
section.AddParagraph(); // Пустая строка
|
||||||
|
|
||||||
|
// Обработка таблиц
|
||||||
|
foreach (var tableData in tables)
|
||||||
|
{
|
||||||
|
// Создание таблицы
|
||||||
|
Table table = section.AddTable();
|
||||||
|
int columnsCount = tableData.GetLength(1);
|
||||||
|
|
||||||
|
// Определение колонок
|
||||||
|
for (int i = 0; i < columnsCount; i++)
|
||||||
|
{
|
||||||
|
Column column = table.AddColumn(Unit.FromCentimeter(3)); // Ширина колонки 3 см
|
||||||
|
}
|
||||||
|
// Настройка границ таблицы
|
||||||
|
table.Borders.Width = 0.75; // Толщина границ таблицы
|
||||||
|
table.Borders.Color = Colors.Black; // Цвет границ таблицы
|
||||||
|
|
||||||
|
// Добавление строк и ячеек
|
||||||
|
for (int i = 0; i < tableData.GetLength(0); i++)
|
||||||
|
{
|
||||||
|
Row row = table.AddRow();
|
||||||
|
for (int j = 0; j < tableData.GetLength(1); j++)
|
||||||
|
{
|
||||||
|
row.Cells[j].AddParagraph(tableData[i, j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
section.AddParagraph(); // Пустая строка после таблицы
|
||||||
|
}
|
||||||
|
|
||||||
|
// Сохранение документа
|
||||||
|
PdfDocumentRenderer pdfRenderer = new PdfDocumentRenderer(true);
|
||||||
|
pdfRenderer.Document = document;
|
||||||
|
pdfRenderer.RenderDocument();
|
||||||
|
pdfRenderer.PdfDocument.Save(fileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
19
KopLab1/Forms/MainForm.Designer.cs
generated
19
KopLab1/Forms/MainForm.Designer.cs
generated
@ -28,6 +28,7 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
|
components = new System.ComponentModel.Container();
|
||||||
customListBox1 = new FormLibrary.CustomListBox();
|
customListBox1 = new FormLibrary.CustomListBox();
|
||||||
button1 = new Button();
|
button1 = new Button();
|
||||||
button2 = new Button();
|
button2 = new Button();
|
||||||
@ -39,6 +40,8 @@
|
|||||||
button5 = new Button();
|
button5 = new Button();
|
||||||
button6 = new Button();
|
button6 = new Button();
|
||||||
button7 = new Button();
|
button7 = new Button();
|
||||||
|
pdfTable1 = new FormLibrary.PDFTable(components);
|
||||||
|
button8 = new Button();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// customListBox1
|
// customListBox1
|
||||||
@ -107,7 +110,6 @@
|
|||||||
//
|
//
|
||||||
valueTableControl1.Location = new Point(487, 12);
|
valueTableControl1.Location = new Point(487, 12);
|
||||||
valueTableControl1.Name = "valueTableControl1";
|
valueTableControl1.Name = "valueTableControl1";
|
||||||
valueTableControl1.SelectedRowIndex = -1;
|
|
||||||
valueTableControl1.Size = new Size(450, 369);
|
valueTableControl1.Size = new Size(450, 369);
|
||||||
valueTableControl1.TabIndex = 7;
|
valueTableControl1.TabIndex = 7;
|
||||||
//
|
//
|
||||||
@ -141,11 +143,22 @@
|
|||||||
button7.UseVisualStyleBackColor = true;
|
button7.UseVisualStyleBackColor = true;
|
||||||
button7.Click += ButtonShowData_Click;
|
button7.Click += ButtonShowData_Click;
|
||||||
//
|
//
|
||||||
|
// button8
|
||||||
|
//
|
||||||
|
button8.Location = new Point(26, 481);
|
||||||
|
button8.Name = "button8";
|
||||||
|
button8.Size = new Size(139, 23);
|
||||||
|
button8.TabIndex = 11;
|
||||||
|
button8.Text = "Create PDF";
|
||||||
|
button8.UseVisualStyleBackColor = true;
|
||||||
|
button8.Click += GeneratePdfButton_Click;
|
||||||
|
//
|
||||||
// MainForm
|
// MainForm
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||||
AutoScaleMode = AutoScaleMode.Font;
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
ClientSize = new Size(949, 450);
|
ClientSize = new Size(944, 625);
|
||||||
|
Controls.Add(button8);
|
||||||
Controls.Add(button7);
|
Controls.Add(button7);
|
||||||
Controls.Add(button6);
|
Controls.Add(button6);
|
||||||
Controls.Add(button5);
|
Controls.Add(button5);
|
||||||
@ -176,5 +189,7 @@
|
|||||||
private Button button5;
|
private Button button5;
|
||||||
private Button button6;
|
private Button button6;
|
||||||
private Button button7;
|
private Button button7;
|
||||||
|
private FormLibrary.PDFTable pdfTable1;
|
||||||
|
private Button button8;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -126,5 +126,43 @@ namespace Forms
|
|||||||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private void GeneratePdfButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Создаем экземпляр компонента для генерации PDF
|
||||||
|
var documentGenerator = new PDFTable();
|
||||||
|
|
||||||
|
// Пример таблиц
|
||||||
|
var tables = new List<string[,]>
|
||||||
|
{
|
||||||
|
new string[,]
|
||||||
|
{
|
||||||
|
{ "test 1", "test 2", "test 3" },
|
||||||
|
{ "test 4", "test 5", "test 6" }
|
||||||
|
},
|
||||||
|
new string[,]
|
||||||
|
{
|
||||||
|
{ "test 1", "test 2" },
|
||||||
|
{ "test 1", "test 2" }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Вызываем метод для создания PDF
|
||||||
|
string filePath = "G:\\Отчет.pdf";
|
||||||
|
string documentTitle = "test name";
|
||||||
|
|
||||||
|
documentGenerator.GeneratePdf(filePath, documentTitle, tables);
|
||||||
|
|
||||||
|
// Уведомляем пользователя
|
||||||
|
MessageBox.Show("PDF-документ успешно создан!", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
// Обрабатываем ошибки
|
||||||
|
MessageBox.Show($"Произошла ошибка: {ex.Message}", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -117,4 +117,7 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
|
<metadata name="pdfTable1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
Loading…
Reference in New Issue
Block a user