Esempio n. 1
0
 public void UpdateAnimations(FrameworkElement fe, Storyboard storyboard1)
 {
     NoesisGUI_PINVOKE.VisualStateGroup_UpdateAnimations__SWIG_1(swigCPtr, FrameworkElement.getCPtr(fe), Storyboard.getCPtr(storyboard1));
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 2
0
 public void Begin(FrameworkElement target, HandoffBehavior handoffBehavior)
 {
     NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_3(swigCPtr, FrameworkElement.getCPtr(target), (int)handoffBehavior);
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 3
0
 public void Begin(FrameworkElement target, FrameworkElement nameScope, HandoffBehavior handoffBehavior, bool isControllable)
 {
     NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_8(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope), (int)handoffBehavior, isControllable);
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 4
0
 public void Remove(FrameworkElement target)
 {
     NoesisGUI_PINVOKE.Storyboard_Remove__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 5
0
 public void Begin(FrameworkElement target, bool isControllable)
 {
     NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_2(swigCPtr, FrameworkElement.getCPtr(target), isControllable);
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 6
0
 public void SetCurrentState(FrameworkElement fe, VisualState state)
 {
     NoesisGUI_PINVOKE.VisualStateGroup_SetCurrentState(swigCPtr, FrameworkElement.getCPtr(fe), VisualState.getCPtr(state));
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
Esempio n. 7
0
 public void Begin(FrameworkElement target, FrameworkElement nameScope)
 {
     NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_5(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope));
     if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
     {
         throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
     }
 }
     public void UpdateAnimations(FrameworkElement fe, Storyboard storyboard1, Storyboard storyboard2)
     {
         NoesisGUI_PINVOKE.VisualStateGroup_UpdateAnimations__SWIG_0(swigCPtr, FrameworkElement.getCPtr(fe), Storyboard.getCPtr(storyboard1), Storyboard.getCPtr(storyboard2));
 #if UNITY_EDITOR || NOESIS_API
         if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
         {
             throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
         }
 #endif
     }
Esempio n. 9
0
        public bool IsPaused(FrameworkElement target)
        {
            bool ret = NoesisGUI_PINVOKE.Storyboard_IsPaused__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Esempio n. 10
0
        public bool MoveFocus(FrameworkElement source, TraversalRequest request)
        {
            bool ret = NoesisGUI_PINVOKE.KeyboardNavigation_MoveFocus(swigCPtr, FrameworkElement.getCPtr(source), TraversalRequest.getCPtr(request));

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Esempio n. 11
0
        public static object GetChild(FrameworkElement element, uint index)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.LogicalTreeHelper_GetChild(FrameworkElement.getCPtr(element), index);

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 12
0
        public static uint GetChildrenCount(FrameworkElement element)
        {
            uint ret = NoesisGUI_PINVOKE.LogicalTreeHelper_GetChildrenCount(FrameworkElement.getCPtr(element));

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Esempio n. 13
0
        public static FrameworkElement GetParent(FrameworkElement element)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.LogicalTreeHelper_GetParent(FrameworkElement.getCPtr(element));

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return((FrameworkElement)Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 14
0
        public static bool GoToElementState(FrameworkElement root, string stateName, bool useTransitions)
        {
            bool ret = NoesisGUI_PINVOKE.VisualStateManager_GoToElementState(FrameworkElement.getCPtr(root), stateName != null ? stateName : string.Empty, useTransitions);

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Esempio n. 15
0
 public void Remove(FrameworkElement target)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     {
         NoesisGUI_PINVOKE.Storyboard_Remove__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));
     }
 }
Esempio n. 16
0
     public void Remove(FrameworkElement target)
     {
         NoesisGUI_PINVOKE.Storyboard_Remove__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));
 #if UNITY_EDITOR || NOESIS_API
         if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
         {
             throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
         }
 #endif
     }
Esempio n. 17
0
     public void Begin(FrameworkElement target, FrameworkElement nameScope, HandoffBehavior handoffBehavior)
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_7(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope), (int)handoffBehavior);
 #if UNITY_EDITOR || NOESIS_API
         if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
         {
             throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
         }
 #endif
     }
Esempio n. 18
0
     public void Begin(FrameworkElement target, FrameworkElement nameScope, bool isControllable)
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_6(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope), isControllable);
 #if UNITY_EDITOR || NOESIS_API
         if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
         {
             throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
         }
 #endif
     }
Esempio n. 19
0
     public void Begin(FrameworkElement target, HandoffBehavior handoffBehavior, bool isControllable)
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_4(swigCPtr, FrameworkElement.getCPtr(target), (int)handoffBehavior, isControllable);
 #if UNITY_EDITOR || NOESIS_API
         if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
         {
             throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
         }
 #endif
     }
Esempio n. 20
0
 public void Begin(FrameworkElement target, HandoffBehavior handoffBehavior, bool isControllable)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_4(swigCPtr, FrameworkElement.getCPtr(target), (int)handoffBehavior, isControllable);
     }
 }
Esempio n. 21
0
        public static FrameworkElement FindLogicalNode(FrameworkElement element, string name)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.LogicalTreeHelper_FindLogicalNode(FrameworkElement.getCPtr(element), name != null ? name : string.Empty);

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return((FrameworkElement)Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 22
0
 public bool IsPaused(FrameworkElement target)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     {
         bool ret = NoesisGUI_PINVOKE.Storyboard_IsPaused__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));
         return(ret);
     }
 }
        public static bool GoToState(FrameworkElement control, string stateName, bool useTransitions)
        {
            bool ret = NoesisGUI_PINVOKE.VisualStateManager_GoToState(FrameworkElement.getCPtr(control), stateName != null ? stateName : string.Empty, useTransitions);

    #if UNITY_EDITOR || NOESIS_API
            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
    #endif
            return(ret);
        }
Esempio n. 24
0
        public bool IsPlaying(FrameworkElement target)
        {
            bool ret = NoesisGUI_PINVOKE.Storyboard_IsPlaying__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));

    #if UNITY_EDITOR || NOESIS_API
            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
    #endif
            return(ret);
        }
Esempio n. 25
0
 public void Begin(FrameworkElement target, FrameworkElement nameScope, HandoffBehavior handoffBehavior)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     if (nameScope == null)
     {
         throw new ArgumentNullException("nameScope");
     }
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_7(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope), (int)handoffBehavior);
     }
 }
Esempio n. 26
0
 public void Begin(FrameworkElement target, FrameworkElement nameScope, bool isControllable)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     if (nameScope == null)
     {
         throw new ArgumentNullException("nameScope");
     }
     {
         NoesisGUI_PINVOKE.Storyboard_Begin__SWIG_6(swigCPtr, FrameworkElement.getCPtr(target), FrameworkElement.getCPtr(nameScope), isControllable);
     }
 }
Esempio n. 27
0
        public object FindName(string name, FrameworkElement templatedParent)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.FrameworkTemplate_FindName__SWIG_0(swigCPtr, name != null ? name : string.Empty, FrameworkElement.getCPtr(templatedParent));

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return(Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 28
0
        public FrameworkElement PredictFocus(FrameworkElement source, FocusNavigationDirection direction)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.KeyboardNavigation_PredictFocus(swigCPtr, FrameworkElement.getCPtr(source), (int)direction);

            return((FrameworkElement)Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 29
0
        public FrameworkElement PredictFocus(FrameworkElement source, FocusNavigationDirection direction)
        {
            IntPtr cPtr = NoesisGUI_PINVOKE.KeyboardNavigation_PredictFocus(swigCPtr, FrameworkElement.getCPtr(source), (int)direction);

            if (NoesisGUI_PINVOKE.SWIGPendingException.Pending)
            {
                throw NoesisGUI_PINVOKE.SWIGPendingException.Retrieve();
            }
            return((FrameworkElement)Noesis.Extend.GetProxy(cPtr, false));
        }
Esempio n. 30
0
        public bool MoveFocus(FrameworkElement source, TraversalRequest request)
        {
            bool ret = NoesisGUI_PINVOKE.KeyboardNavigation_MoveFocus(swigCPtr, FrameworkElement.getCPtr(source), TraversalRequest.getCPtr(request));

            return(ret);
        }