Esempio n. 1
0
 void OnActionChanged(object ob, ObjectWrapperEventArgs a)
 {
     if (!localUpdate)
     {
         Refresh();
     }
 }
Esempio n. 2
0
 void OnGroupChanged(object s, ObjectWrapperEventArgs a)
 {
     if (ActionGroupChanged != null)
     {
         ActionGroupChanged(this, new ActionGroupEventArgs((ActionGroup)s));
     }
 }
Esempio n. 3
0
 void OnActionChanged(object s, ObjectWrapperEventArgs args)
 {
     NotifyChanged();
     if (ActionChanged != null)
     {
         ActionChanged(this, new ActionEventArgs((Action)args.Wrapper));
     }
 }
Esempio n. 4
0
        void OnActionChanged(object s, ObjectWrapperEventArgs args)
        {
            // If the name of the action changes, consider it a change in
            // the node, since the generated xml will be different

            Action ac = (Action)args.Wrapper;

            if (ac.Name != lastActionName)
            {
                lastActionName = ac.Name;
                NotifyChanged();
            }
        }
Esempio n. 5
0
		void OnActionChanged (object ob, ObjectWrapperEventArgs a)
		{
			if (!localUpdate)
				Refresh ();
		}
Esempio n. 6
0
 void OnActionChanged(object s, ObjectWrapperEventArgs args)
 {
     NotifyModified();
 }
Esempio n. 7
0
        void OnActionChanged(object s, ObjectWrapperEventArgs args)
        {
            // If the name of the action changes, consider it a change in
            // the node, since the generated xml will be different

            Action ac = (Action) args.Wrapper;
            if (ac.Name != lastActionName) {
                lastActionName = ac.Name;
                NotifyChanged ();
            }
        }
Esempio n. 8
0
 void OnGroupChanged(object s, ObjectWrapperEventArgs args)
 {
     headerLabel.Text = actionGroup.Name;
     NotifyModified();
 }
Esempio n. 9
0
		void OnGroupChanged (object s, ObjectWrapperEventArgs a)
		{
			if (ActionGroupChanged != null)
				ActionGroupChanged (this, new ActionGroupEventArgs ((ActionGroup)s));
		}
Esempio n. 10
0
		void OnActionChanged (object s, ObjectWrapperEventArgs args)
		{
			NotifyChanged ();
			if (ActionChanged != null)
				ActionChanged (this, new ActionEventArgs ((Action) args.Wrapper));
		}
Esempio n. 11
0
 void OnGroupChanged(object s, ObjectWrapperEventArgs args)
 {
     headerLabel.Text = actionGroup.Name;
     NotifyModified ();
 }
Esempio n. 12
0
 void OnActionChanged(object s, ObjectWrapperEventArgs args)
 {
     NotifyModified ();
 }