[chore:] too much to documentate xD but changes like better AddressCheck, Progress Window, Result Window, etc.

This commit is contained in:
Elias Fierke
2025-07-09 23:01:13 +02:00
parent 4bdf50a290
commit 982373002d
22 changed files with 371 additions and 171 deletions

24
ProgressWindow.axaml.cs Normal file
View File

@@ -0,0 +1,24 @@
using Avalonia.Controls;
namespace Logof_Client;
public partial class ProgressWindow : Window
{
public ProgressWindow()
{
InitializeComponent();
PbProgress.Minimum = 0;
PbProgress.Maximum = 100;
}
public void ChangePercentage(double percentage)
{
PbProgress.Value = percentage;
}
public void AddToLog(string message)
{
TbLog.Text = message;
//ScvLog.ScrollToEnd();
}
}