public UIElement(int type, string key, string description, ModifierChain mc) { this.type = type; this.key = key; this.description = description; this.mc = mc; }
void RechnermodulBibliothek.UIBuilderInterface.addStringInput(string key, string description, RechnermodulBibliothek.ModifierChain mc) { UIElement element = new UIElement(UIElement.TYPE_SINGLE, key, description, mc); this.elements.Add(element); }