sledgemapper/Sledgemapper/UI/ErrorWindow.Custom.cs
Michele Scandura 79edfcc4d3
All checks were successful
continuous-integration/drone/push Build is passing
error message, broken build
2021-09-21 16:53:04 +01:00

17 lines
277 B
C#

using Myra.Graphics2D.Brushes;
using Myra.Graphics2D.UI;
namespace Sledgemapper.UI
{
partial class ErrorWindow : VerticalStackPanel
{
public ErrorWindow(string message)
{
BuildUI();
TxtError.Text = message;
}
}
}