[chore:] too much to documentate xD but changes like better AddressCheck, Progress Window, Result Window, etc.
This commit is contained in:
24
ProgressWindow.axaml.cs
Normal file
24
ProgressWindow.axaml.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user