コード例 #1
0
 public HtmlFormShowWebpage()
 {
     this.Title = "Goto webpage";
     this.ElUri = this.AddElement(new ElementTextbox("url", "URL"));
     //this.AddElement(new ElementNumber("autoRefresh", "Auto refresh", -1));
     this.AddElementSubmit();
 }
コード例 #2
0
        public HtmlFormAddFileToLibrary()
        {
            this.Title = "Add file to library";

            this.ElFilename = this.AddElement(new ElementTextbox("filename", "Filename (local to server)"));
            this.AddElementSubmit();
        }
コード例 #3
0
ファイル: HtmlForm.cs プロジェクト: theterminator3000/fmb
        internal HtmlFormElement AddElement(HtmlFormElement el)
        {
            elements.Add(el);

            return el;
        }