Exemplo n.º 1
0
 private void AddWidgetHash(WidgetHash hash)
 {
     if (Widget.Visible)
     {
         PageHashes.Add(hash);
     }
 }
Exemplo n.º 2
0
        public void ParseEverything(Control targetControl)
        {
            Widget.SaveWidgetOptions();
            ParseEvents();

            WidgetHash hash = new WidgetHash(Widget, _encodedOptions, _events, targetControl);

            AddWidgetHash(hash);
        }
Exemplo n.º 3
0
 private void AddWidgetHash(WidgetHash hash)
 {
     if(Widget.Visible) {
         PageHashes.Add(hash);
     }
 }
Exemplo n.º 4
0
        public void ParseEverything(Control targetControl)
        {
            Widget.SaveWidgetOptions();
            ParseEvents();

            WidgetHash hash = new WidgetHash(Widget, _encodedOptions, _events, targetControl);

            AddWidgetHash(hash);
        }
Exemplo n.º 5
0
 private void AddWidgetHash(Control targetControl, WidgetHash hash)
 {
     if(Widget.Visible) {
         PageHashes[targetControl] = hash;
     }
 }