コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #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
     }
コード例 #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);
        }
コード例 #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);
        }
コード例 #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));
        }
コード例 #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);
        }
コード例 #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));
        }
コード例 #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);
        }
コード例 #15
0
ファイル: Storyboard.cs プロジェクト: CodingJinxx/polypoly
 public void Remove(FrameworkElement target)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     {
         NoesisGUI_PINVOKE.Storyboard_Remove__SWIG_1(swigCPtr, FrameworkElement.getCPtr(target));
     }
 }
コード例 #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
     }
コード例 #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
     }
コード例 #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
     }
コード例 #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
     }
コード例 #20
0
ファイル: Storyboard.cs プロジェクト: CodingJinxx/polypoly
 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);
     }
 }
コード例 #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));
        }
コード例 #22
0
ファイル: Storyboard.cs プロジェクト: CodingJinxx/polypoly
 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);
        }
コード例 #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);
        }
コード例 #25
0
ファイル: Storyboard.cs プロジェクト: CodingJinxx/polypoly
 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);
     }
 }
コード例 #26
0
ファイル: Storyboard.cs プロジェクト: CodingJinxx/polypoly
 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);
     }
 }
コード例 #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));
        }
コード例 #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));
        }
コード例 #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));
        }
コード例 #30
0
        public bool MoveFocus(FrameworkElement source, TraversalRequest request)
        {
            bool ret = NoesisGUI_PINVOKE.KeyboardNavigation_MoveFocus(swigCPtr, FrameworkElement.getCPtr(source), TraversalRequest.getCPtr(request));

            return(ret);
        }