Skip to content

Instantly share code, notes, and snippets.

View nathanpjones's full-sized avatar

Nathan Jones nathanpjones

View GitHub Profile
@nathanpjones
nathanpjones / Input-Output-Go-WPF-GUI-Template.linq
Created September 6, 2019 18:15 — forked from sinairv/Input-Output-Go-WPF-GUI-Template.linq
LinqPad Input-Output-Go WPF GUI Template
enum TextBoxMode
{
SingleLine,
MultiLine
}
TextBox CreateTextBox(string label, TextBoxMode textBoxMode)
{
var lbl = new Label();
lbl.Content = $"{label}:";