コード例 #1
0
 public UIElement(int type, string key, string description, ModifierChain mc)
 {
     this.type        = type;
     this.key         = key;
     this.description = description;
     this.mc          = mc;
 }
コード例 #2
0
ファイル: rechnermodul.cs プロジェクト: hannsen/Rechnermodul
        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);
        }