-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0990dc8
commit 82bf47b
Showing
30 changed files
with
1,815 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated /> | ||
// | ||
// This file was automatically generated by SWIG (http://www.swig.org). | ||
// Version 3.0.10 | ||
// | ||
// Do not make changes to this file unless you know what you are doing--modify | ||
// the SWIG interface file instead. | ||
//------------------------------------------------------------------------------ | ||
|
||
|
||
using System; | ||
using System.Runtime.InteropServices; | ||
|
||
namespace Noesis | ||
{ | ||
|
||
public static class FocusManager { | ||
public static UIElement GetFocusedElement(DependencyObject element) { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_GetFocusedElement(DependencyObject.getCPtr(element)); | ||
return (UIElement)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
|
||
public static void SetFocusedElement(DependencyObject element, UIElement value) { | ||
NoesisGUI_PINVOKE.FocusManager_SetFocusedElement(DependencyObject.getCPtr(element), UIElement.getCPtr(value)); | ||
} | ||
|
||
public static bool GetIsFocusScope(DependencyObject element) { | ||
bool ret = NoesisGUI_PINVOKE.FocusManager_GetIsFocusScope(DependencyObject.getCPtr(element)); | ||
return ret; | ||
} | ||
|
||
public static void SetIsFocusScope(DependencyObject element, bool value) { | ||
NoesisGUI_PINVOKE.FocusManager_SetIsFocusScope(DependencyObject.getCPtr(element), value); | ||
} | ||
|
||
public static DependencyObject GetFocusScope(DependencyObject element) { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_GetFocusScope(DependencyObject.getCPtr(element)); | ||
return (DependencyObject)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
|
||
public static DependencyProperty FocusedElementProperty { | ||
get { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_FocusedElementProperty_get(); | ||
return (DependencyProperty)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
} | ||
|
||
public static DependencyProperty IsFocusScopeProperty { | ||
get { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_IsFocusScopeProperty_get(); | ||
return (DependencyProperty)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
} | ||
|
||
public static RoutedEvent LostFocusEvent { | ||
get { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_LostFocusEvent_get(); | ||
return (RoutedEvent)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
} | ||
|
||
public static RoutedEvent GotFocusEvent { | ||
get { | ||
IntPtr cPtr = NoesisGUI_PINVOKE.FocusManager_GotFocusEvent_get(); | ||
return (RoutedEvent)Noesis.Extend.GetProxy(cPtr, false); | ||
} | ||
} | ||
|
||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.