diff -r 000000000000 -r 2483f517c562 ui/wpf/UIcore/Controls.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/wpf/UIcore/Controls.cs Sun Jan 21 16:30:18 2024 +0100 @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; + +namespace UI +{ + public class Controls + { + public static Button Button(Container container, String label, RoutedEventHandler e) + { + Button button = new Button(); + button.Content = label; + container.Add(button, false); + + button.Click += e; + + return button; + } + + public static Label Label(Container container, String str, int alignment) + { + HorizontalAlignment a; + switch (alignment) + { + case 0: a = HorizontalAlignment.Left; break; + case 1: a = HorizontalAlignment.Right; break; + case 2: a = HorizontalAlignment.Center; break; + default: a = HorizontalAlignment.Left; break; + } + + Label label = new Label(); + label.HorizontalAlignment = a; + label.Content = str; + container.Add(label, false); + + return label; + } + + public static Label Space(Container container) + { + return Label(container, null, 2); + } + + public static Separator Separator(Container container) + { + Separator separator = new Separator(); + container.Add(separator, false); + return separator; + } + } +}