Создал новый компонент для картинок, пока пустой
This commit is contained in:
parent
8e34e6aca4
commit
1efe665054
36
WinFormSolution/Components/ComponentExcelWithImage.Designer.cs
generated
Normal file
36
WinFormSolution/Components/ComponentExcelWithImage.Designer.cs
generated
Normal file
@ -0,0 +1,36 @@
|
||||
namespace Components
|
||||
{
|
||||
partial class ComponentExcelWithImage
|
||||
{
|
||||
/// <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
|
||||
}
|
||||
}
|
59
WinFormSolution/Components/ComponentExcelWithImage.cs
Normal file
59
WinFormSolution/Components/ComponentExcelWithImage.cs
Normal file
@ -0,0 +1,59 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Components
|
||||
{
|
||||
public partial class ComponentExcelWithImage : Component
|
||||
{
|
||||
private string _fileName;
|
||||
public string FileName
|
||||
{
|
||||
set
|
||||
{
|
||||
if (string.IsNullOrEmpty(value))
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (!value.EndsWith(".xlsx"))
|
||||
{
|
||||
throw new ArgumentException("Not xlsx file provided");
|
||||
}
|
||||
_fileName = value;
|
||||
}
|
||||
|
||||
}
|
||||
public ComponentExcelWithImage()
|
||||
{
|
||||
InitializeComponent();
|
||||
_fileName = string.Empty;
|
||||
}
|
||||
|
||||
public ComponentExcelWithImage(IContainer container) : this()
|
||||
{
|
||||
container.Add(this);
|
||||
}
|
||||
|
||||
public bool SaveToFile(string[] texts)
|
||||
{
|
||||
CheckFileExsists();
|
||||
using var writer = new StreamWriter(_fileName, true);
|
||||
foreach (var text in texts)
|
||||
{
|
||||
writer.WriteLine(text);
|
||||
}
|
||||
writer.Flush();
|
||||
return true;
|
||||
}
|
||||
|
||||
private void CheckFileExsists()
|
||||
{
|
||||
if (string.IsNullOrEmpty(_fileName))
|
||||
{
|
||||
throw new ArgumentNullException(_fileName);
|
||||
}
|
||||
if (!File.Exists(_fileName))
|
||||
{
|
||||
throw new FileNotFoundException(_fileName);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -7,4 +7,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DocumentFormat.OpenXml" Version="3.1.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
Loading…
Reference in New Issue
Block a user