demka/demofinish/MainWindow.axaml.cs

61 lines
1.4 KiB
C#
Raw Normal View History

2025-03-25 18:36:42 +00:00
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
2024-12-26 13:15:57 +00:00
using Avalonia.Controls;
2025-03-25 18:36:42 +00:00
using Avalonia.Media.Imaging;
using demofinish.Models;
2024-12-26 13:15:57 +00:00
namespace demofinish
{
public partial class MainWindow : Window
{
2025-03-25 18:36:42 +00:00
private ObservableCollection<Agent> agents = new ObservableCollection<Agent>();
private List<Agent> agentsList = new List<Agent>();
2024-12-26 13:15:57 +00:00
public MainWindow()
{
InitializeComponent();
2025-03-25 18:36:42 +00:00
LoadAgents();
}
private Bitmap? GetImage(string logo)
{
try
{
string absolutePath = Path.Combine(AppContext.BaseDirectory, logo);
return new Bitmap(absolutePath);
}
catch (Exception ex)
{
Console.WriteLine($"Ошибка загрузки изображения: {ex.Message}");
return null;
}
2024-12-26 13:15:57 +00:00
}
2025-03-25 18:36:42 +00:00
2024-12-26 13:15:57 +00:00
2025-03-25 18:36:42 +00:00
private void LoadAgents()
2024-12-26 13:15:57 +00:00
{
2025-03-25 18:36:42 +00:00
using var context = new User1Context();
agentsList = context.Agents.ToList();
foreach (var agent in agentsList)
{
agent.Image = GetImage(agent.Logo);
}
agents.Clear();
foreach (var agent in agentsList)
{
agents.Add(agent);
}
AgentListBox.ItemsSource = agents;
2024-12-26 13:15:57 +00:00
}
}
}