Tizen Net bezel rotate event not triggered The Next CEO of Stack OverflowSending email in .NET through GmailHow to escape braces (curly brackets) in a format string in .NET.NET String.Format() to add commas in thousands place for a numberDifference between decimal, float and double in .NET?How can I get the application's path in a .NET console application?Reading settings from app.config or web.config in .netEasiest way to split a string on newlines in .NET?How do I force my .NET application to run as administrator?How do I rotate the Android emulator display?How do I turn a C# object into a JSON string in .NET?
Where to find order of arguments for default functions
Apart from "berlinern", do any other German dialects have a corresponding verb?
Increase performance creating Mandelbrot set in python
How can I open an app using Terminal?
Is a stroke of luck acceptable after a series of unfavorable events?
Describing a person. What needs to be mentioned?
Visit to the USA with ESTA approved before trip to Iran
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Is it okay to store user locations?
How to start emacs in "nothing" mode (`fundamental-mode`)
WOW air has ceased operation, can I get my tickets refunded?
What is the point of a new vote on May's deal when the indicative votes suggest she will not win?
Only print output after finding pattern
Return of the Riley Riddles in Reverse
How to make a software documentation "officially" citable?
How can I quit an app using Terminal?
Why didn't Khan get resurrected in the Genesis Explosion?
What does "Its cash flow is deeply negative" mean?
MAZDA 3 2006 (UK) - poor acceleration then takes off at 3250 revs
Was a professor correct to chastise me for writing "Prof. X" rather than "Professor X"?
What does this shorthand mean?
What happens if you roll doubles 3 times then land on "Go to jail?"
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
Whats the best way to handle refactoring a big file?
Tizen Net bezel rotate event not triggered
The Next CEO of Stack OverflowSending email in .NET through GmailHow to escape braces (curly brackets) in a format string in .NET.NET String.Format() to add commas in thousands place for a numberDifference between decimal, float and double in .NET?How can I get the application's path in a .NET console application?Reading settings from app.config or web.config in .netEasiest way to split a string on newlines in .NET?How do I force my .NET application to run as administrator?How do I rotate the Android emulator display?How do I turn a C# object into a JSON string in .NET?
Trying to begin development of widget for Galaxy Watch. Doing it in Visual Studio 2017. Using NET extension(based on Xamarin).... for debug using Tizen Emulator (Wearable 5.0).
I'm trying to handle bezel rotate event. Here is the simplest code :
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MainPage : CirclePage,IRotaryEventReceiver
public MainPage()
InitializeComponent();
public void Rotate(RotaryEventArgs args)
throw new NotImplementedException();
but my breakPoint inside of Rotate function is never triggered...
If i put break point in construktor - it is yes triggered - so looks like environment is fine (compiled+deployed+running+attached...)
any Ideas whats wrong ?
.net emulation tizen tizen-wearable-sdk
add a comment |
Trying to begin development of widget for Galaxy Watch. Doing it in Visual Studio 2017. Using NET extension(based on Xamarin).... for debug using Tizen Emulator (Wearable 5.0).
I'm trying to handle bezel rotate event. Here is the simplest code :
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MainPage : CirclePage,IRotaryEventReceiver
public MainPage()
InitializeComponent();
public void Rotate(RotaryEventArgs args)
throw new NotImplementedException();
but my breakPoint inside of Rotate function is never triggered...
If i put break point in construktor - it is yes triggered - so looks like environment is fine (compiled+deployed+running+attached...)
any Ideas whats wrong ?
.net emulation tizen tizen-wearable-sdk
add a comment |
Trying to begin development of widget for Galaxy Watch. Doing it in Visual Studio 2017. Using NET extension(based on Xamarin).... for debug using Tizen Emulator (Wearable 5.0).
I'm trying to handle bezel rotate event. Here is the simplest code :
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MainPage : CirclePage,IRotaryEventReceiver
public MainPage()
InitializeComponent();
public void Rotate(RotaryEventArgs args)
throw new NotImplementedException();
but my breakPoint inside of Rotate function is never triggered...
If i put break point in construktor - it is yes triggered - so looks like environment is fine (compiled+deployed+running+attached...)
any Ideas whats wrong ?
.net emulation tizen tizen-wearable-sdk
Trying to begin development of widget for Galaxy Watch. Doing it in Visual Studio 2017. Using NET extension(based on Xamarin).... for debug using Tizen Emulator (Wearable 5.0).
I'm trying to handle bezel rotate event. Here is the simplest code :
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MainPage : CirclePage,IRotaryEventReceiver
public MainPage()
InitializeComponent();
public void Rotate(RotaryEventArgs args)
throw new NotImplementedException();
but my breakPoint inside of Rotate function is never triggered...
If i put break point in construktor - it is yes triggered - so looks like environment is fine (compiled+deployed+running+attached...)
any Ideas whats wrong ?
.net emulation tizen tizen-wearable-sdk
.net emulation tizen tizen-wearable-sdk
asked Mar 8 at 12:51
Kamornik ColaKamornik Cola
155111
155111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It seems you haven't set a RotaryFocusObject property for the IRotaryEventReceiver. The RotaryEvent of IRotaryEventReceiver will not be called unless a RotaryFocusObject is set.
For more information, please read the API guide and consider adding the following lines to your Xaml file.
https://samsung.github.io/Tizen.CircularUI/guide/IRotaryEventReceiver.html
<w:CirclePage
...
x:Name="MyCirclePage"
RotaryFocusObject="x:Reference MyCirclePage">
Also the line breakpoints should work if you are debugging with Wearable 5.0 emulator on the VisualStudio. Here's a list of features currently supported by the debugger for Tizen 5.0.
https://github.com/Samsung/netcoredbg/wiki/Features
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063616%2ftizen-net-bezel-rotate-event-not-triggered%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It seems you haven't set a RotaryFocusObject property for the IRotaryEventReceiver. The RotaryEvent of IRotaryEventReceiver will not be called unless a RotaryFocusObject is set.
For more information, please read the API guide and consider adding the following lines to your Xaml file.
https://samsung.github.io/Tizen.CircularUI/guide/IRotaryEventReceiver.html
<w:CirclePage
...
x:Name="MyCirclePage"
RotaryFocusObject="x:Reference MyCirclePage">
Also the line breakpoints should work if you are debugging with Wearable 5.0 emulator on the VisualStudio. Here's a list of features currently supported by the debugger for Tizen 5.0.
https://github.com/Samsung/netcoredbg/wiki/Features
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
add a comment |
It seems you haven't set a RotaryFocusObject property for the IRotaryEventReceiver. The RotaryEvent of IRotaryEventReceiver will not be called unless a RotaryFocusObject is set.
For more information, please read the API guide and consider adding the following lines to your Xaml file.
https://samsung.github.io/Tizen.CircularUI/guide/IRotaryEventReceiver.html
<w:CirclePage
...
x:Name="MyCirclePage"
RotaryFocusObject="x:Reference MyCirclePage">
Also the line breakpoints should work if you are debugging with Wearable 5.0 emulator on the VisualStudio. Here's a list of features currently supported by the debugger for Tizen 5.0.
https://github.com/Samsung/netcoredbg/wiki/Features
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
add a comment |
It seems you haven't set a RotaryFocusObject property for the IRotaryEventReceiver. The RotaryEvent of IRotaryEventReceiver will not be called unless a RotaryFocusObject is set.
For more information, please read the API guide and consider adding the following lines to your Xaml file.
https://samsung.github.io/Tizen.CircularUI/guide/IRotaryEventReceiver.html
<w:CirclePage
...
x:Name="MyCirclePage"
RotaryFocusObject="x:Reference MyCirclePage">
Also the line breakpoints should work if you are debugging with Wearable 5.0 emulator on the VisualStudio. Here's a list of features currently supported by the debugger for Tizen 5.0.
https://github.com/Samsung/netcoredbg/wiki/Features
It seems you haven't set a RotaryFocusObject property for the IRotaryEventReceiver. The RotaryEvent of IRotaryEventReceiver will not be called unless a RotaryFocusObject is set.
For more information, please read the API guide and consider adding the following lines to your Xaml file.
https://samsung.github.io/Tizen.CircularUI/guide/IRotaryEventReceiver.html
<w:CirclePage
...
x:Name="MyCirclePage"
RotaryFocusObject="x:Reference MyCirclePage">
Also the line breakpoints should work if you are debugging with Wearable 5.0 emulator on the VisualStudio. Here's a list of features currently supported by the debugger for Tizen 5.0.
https://github.com/Samsung/netcoredbg/wiki/Features
answered Mar 11 at 1:20
Swift KimSwift Kim
263
263
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
add a comment |
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
1
1
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
Kim, You are life saver - works as magic ! Huge thanks ! :)
– Kamornik Cola
Mar 11 at 20:48
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063616%2ftizen-net-bezel-rotate-event-not-triggered%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown