KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/ListBoxValues.cs

147 lines
4.8 KiB
C#
Raw Normal View History

2024-09-16 20:52:42 +04:00
using System.Reflection;
using System.Text.RegularExpressions;
2024-10-01 15:35:05 +04:00
using static System.Net.Mime.MediaTypeNames;
2024-09-16 20:52:42 +04:00
namespace ComponentsLibrary
{
public partial class ListBoxValues : UserControl
{
private string layoutString = string.Empty;
private char startSymbol = '{';
private char endSymbol = '}';
private List<object> items = new List<object>();
2024-09-30 20:39:14 +04:00
private EventHandler? _getObject;
2024-09-16 20:52:42 +04:00
public ListBoxValues()
{
InitializeComponent();
}
2024-09-30 20:39:14 +04:00
//событие, вызываемое при выборе строки
public event EventHandler GetObject
{
add { _getObject += value; }
remove { _getObject -= value; }
}
private void listBox_SelectedIndexChanged(object sender, EventArgs e)
{
_getObject?.Invoke(this, e);
}
2024-09-16 20:52:42 +04:00
//Публичное свойство для установки и получения индекса выбранной строки (set, get).
public int SelectedIndex
{
get { return listBox.SelectedIndex; }
set { listBox.SelectedIndex = value; }
}
// Публичный метод для установки макетной строки и символов
public void SetLayout(string layout, char startChar, char endChar)
{
layoutString = layout;
startSymbol = startChar;
endSymbol = endChar;
}
// Публичный метод для заполнения ListBox
public void FillListBox<T>(IEnumerable<T> itemList)
{
listBox.Items.Clear();
items.Clear();
foreach (var item in itemList)
{
2024-09-30 20:39:14 +04:00
if (item != null) {
items.Add(item);
string displayText = CreateDisplayText(item);
listBox.Items.Add(displayText);
}
2024-09-16 20:52:42 +04:00
}
}
// Метод для создания строки на основе макета
private string CreateDisplayText(object item)
{
string text = layoutString;
2024-09-30 20:39:14 +04:00
PropertyInfo[] properties = item.GetType().GetProperties();
foreach (var prop in properties)
2024-09-16 20:52:42 +04:00
{
2024-10-01 15:35:05 +04:00
string propertyValue = prop.GetValue(item)?.ToString() ?? string.Empty;
2024-09-30 20:39:14 +04:00
text = text.Replace("{" + prop.Name + "}", propertyValue);
}
2024-09-16 20:52:42 +04:00
2024-09-30 20:39:14 +04:00
return text;
}
2024-10-01 15:35:05 +04:00
// Публичный параметризованный метод для получения объекта из выбранной строки
public T? GetSelectedItem<T>() where T : new()
{
var item = listBox.SelectedItem;
if (item != null)
{
PropertyInfo[] properties = typeof(T).GetProperties();
string layout = layoutString;
string pattern = @"^(.*?){T}.*?(.*?){P}";
2024-10-01 15:35:05 +04:00
//string input2 = "Температура воздуха ТЕМПЕРАТУРА ВЫСОКАЯ, давление НИЗКОЕ";
string? selectedString = item?.ToString();
if (selectedString != null)
{
T obj = new T();
Regex regex = new Regex(pattern);
Match match = regex.Match(layout);
string[] staticText = new string[properties.Length];
if (match.Success)
{
// Извлекаем текст до {T} и до {P}
//string beforeT = match.Groups[1].Value;
//string beforeP = match.Groups[2].Value;
for (int i = 0; i < staticText.Length; i++)
{
staticText[i] = match.Groups[i+1].Value;
}
//string pattern2 = $@"{beforeT}(.*?)\{beforeP}(.*)\{beforeEnd}";
//"Температура воздуха (.*?)\\, давление (.*)\\, такие дела"
2024-10-01 15:35:05 +04:00
string patternStatic = $@"";
for (int i = 0; i < staticText.Length; i++)
{
if (i == staticText.Length - 1)
{
patternStatic += $"{staticText[i]}(.*)";
2024-10-01 15:35:05 +04:00
}
else {
patternStatic += $"{staticText[i]}(.*?)\\";
}
}
Regex regexValues = new Regex(patternStatic);
Match matchValues = regexValues.Match(selectedString);
if (matchValues.Success)
{
//object val1 = matchValues.Groups[1].Value;
//object val2 = matchValues.Groups[2].Value;
for (int i = 0; i < properties.Length; i++)
{
object value = Convert.ChangeType(matchValues.Groups[i+1].Value, properties[i].PropertyType);
properties[i].SetValue(obj, value);
}
return obj;
}
}
}
}
return default;
}
}
2024-09-16 20:52:42 +04:00
}