Search found 3222 matches

by sfernandez
14 Mar 2025, 19:46
Forum: General Discussion
Replies: 2
Views: 101

Re: Best way to animate Stamina Bar

The default ProgressBar template just reflects the changes in the Value property instantly. I guess you want something that animates from the previous value to the new one, right? In that case you need to create a template like this: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/pre...
by sfernandez
14 Mar 2025, 19:21
Forum: General Discussion
Replies: 2
Views: 96

Re: How do I FindResource in a Converter in Unity?

In Unity you can search for the GameObject that contains the ViewComponent (the MainCamera?), and then do something like this:
...
NoesisView view = mainCamera.GetComponent<NoesisView>();
return view.Content.FindResource(resourceKey);
by sfernandez
14 Mar 2025, 19:13
Forum: General Discussion
Replies: 1
Views: 110

Re: Tooltip open event is called twice on mobile platforms

Hi, Current ToolTip implementation is based on mouse inputs only, so when using touch devices it only behaves "as expected" if you press the finger in the screen and then move the finger over the control without releasing it (like if it was a mouse moving). This is a known issue we haven't...
by sfernandez
11 Mar 2025, 21:12
Forum: General Discussion
Replies: 1
Views: 181

Re: [noesis:MoveFocusAction] Direction="Down" doesn't work properly with KeyboardNavigation.TabNavigation="Cycle"

Directional navigation is configured by the KeyboardNavigation.DirectionalNavigation property, so you have to set that first. And the second problem is that your ListView is focusable, so it is focusing it after reaching the top or the bottom of the list. Could you please try the following instead: ...
by sfernandez
11 Mar 2025, 20:49
Forum: Noesis Studio
Replies: 2
Views: 75

Re: Border element corner radius does not match when adding thickness.

Yes, it is the expected behavior (the same that can be seen in WPF) as the specified radius determines the radius of the stroke geometry, which is positioned at the center of the stroke thickness: border-radius20.png You can calculate the radius of the stroked Border, to get the same outer radius of...
by sfernandez
06 Mar 2025, 13:40
Forum: General Discussion
Replies: 2
Views: 455

Re: High radius of BlurEffect with BackgroundEffectBehavior does not blur content around the edges

Would it be possible to share how you solved it to help others with the same problem?
by sfernandez
06 Mar 2025, 13:29
Forum: Noesis Studio
Replies: 3
Views: 102

Re: A couple newbie questions about tutorials

Regarding your questions for Character Selection: a) Reviewing the tutorial video I saw that only Selected state was set up, and there is another relevant state here, the SelectedUnfocused, which is active when ListBoxItem doesn't have focus. This is the state that is visible when starting the appli...
by sfernandez
03 Mar 2025, 21:17
Forum: General Discussion
Replies: 2
Views: 396

Re: Is there an equivalent to the SetResourceReference method?

Unfortunately there is no alternative in C# for that method. Could you please report it in our bugtracker and we will include it in the next version?
by sfernandez
03 Mar 2025, 21:02
Forum: Noesis Studio
Replies: 4
Views: 72

Re: 0.183 - having trouble removing default background style

In that resource dictionary there is no definition for a ListBoxItem Style or Template. As I mentioned you should select the ListBox element, right click it to show the context menu, then pick Template > ItemContainer > Create, to create a custom ListBoxItem template. In that template there are a co...
by sfernandez
28 Feb 2025, 11:27
Forum: General Discussion
Replies: 2
Views: 719

Re: TemplateBinding doesn't work for my UserControl

This happens because the RotateTransform doesn't have a TemplatedParent, so TemplateBinding can't find your control's property. In this case you have to use a RelativeSource with AncestorType as you indicated. I have verified this is the same behavior in WPF.