Example #1
0
        public vw_path(frm_main main = null) : base(main)
        {
            InitializeComponent();
            this.wb_no_path = new web_path_not(this, this.wb_main);
            this.wb_root    = new web_path_root(this.main, this.wb_main);

            this.wb_path            = new web_path(this.main, this.wb_main);
            this.wb_path.oncontext += wb_path_oncontext;
        }
Example #2
0
 public vw_key(web_path p, web_key k, frm_main main = null) : base(main)
 {
     InitializeComponent(); this.web_key = k; this.web_path = p;
 }
Example #3
0
 public vw_tag(web_path p, web_tag k, frm_main main = null) : base(main)
 {
     InitializeComponent(); this.web_tag = k; this.web_path = p;
 }
Example #4
0
 public vw_link(web_path p, web_link l, frm_main main = null) : base(main)
 {
     InitializeComponent(); this.web_link = l; this.web_path = p;
 }
Example #5
0
 public vw_value(web_path p, web_value v, frm_main main = null) : base(main)
 {
     InitializeComponent(); this.web_value = v; this.web_path = p;
 }