Search found 2783 matches

by sfernandez
26 May 2023, 13:47
Forum: General Discussion
Replies: 2
Views: 54

Re: Namescopes in nested UserControls

So I'm wondering if this is something that Microsoft may have patched It seems so: https://referencesource.microsoft.com/#PresentationFramework/src/Framework/MS/Internal/Data/ObjectRef.cs,181 Could you please report this issue in our bugtracker, we will see how to solve it. In the meantime, as you ...
by sfernandez
26 May 2023, 13:20
Forum: General Discussion
Replies: 15
Views: 303

Re: Background Effect and Texture Formats w/ HDR

You shouldn't be rendering the background with the UI, it can be hidden and only available as the source of the effect, something like this: <Grid <Border Opacity="0"> <Border x:Name="source" Background="{DynamicResource BackgroundBlur.Brush.Background}"/> </Border> <El...
by sfernandez
26 May 2023, 13:16
Forum: General Discussion
Replies: 3
Views: 102

Re: How to use TargetName in a Setter from a derived style?

Yeah, the Tag property is used a lot in these situations. Another option is to create extra attached properties that you can use to configure your templates. For example you can have extra properties like Icon, NormalImage, HoverImage, PressImage...
by sfernandez
24 May 2023, 19:42
Forum: General Discussion
Replies: 3
Views: 102

Re: How to use TargetName in a Setter from a derived style?

It is not possible to access template elements from outside the ControlTemplate. So a Style trigger or setter cannot reference any template element. You need to modify properties in the styled control, that can then be used from inside the template. For example you can have something like this: <Sty...
by sfernandez
24 May 2023, 19:33
Forum: General Discussion
Replies: 9
Views: 386

Re: Newbie + Blend + dark Noesis.App.Theme

Thanks for the update. I found that the assemblies generated for net5.0 and netcoreapp3.1 were not including the theme resources. We fixed it in Noesis.GUI.Extensions 3.0.20 that is already uploaded. Anyway, we still recommend creating .NET Framework projects to work with Blend because the designer ...
by sfernandez
24 May 2023, 13:15
Forum: General Discussion
Replies: 5
Views: 156

Re: XAML Tutorial and Geometry Path Question

Could you describe what your workflow was to create the geometry paths for this UI? The paths were designed in Illustrator/InkScape, then exported to XAML and then moved the path data to Geometries in a dictionary. Since these paths have fixed dimensions, if I am wanting to have a UI like this grow...
by sfernandez
24 May 2023, 13:05
Forum: General Discussion
Replies: 2
Views: 67

Re: How does focus work?

The task is simple - to reproduce the behavior of the menu. That is, it is necessary that the menu closes when the user clicks outside the area of this element. If you use a Popup with StaysOpen="False" that is the default behavior, clicking outside its area will close it. Have you tried ...
by sfernandez
24 May 2023, 12:02
Forum: General Discussion
Replies: 15
Views: 1282

Re: Unity WebGL: Issues with TextBox. Noesis 3.1.7 Unity 2022.2

We've created ticket #2609 to track this issue. Thanks for pointing this out.
by sfernandez
24 May 2023, 10:34
Forum: General Discussion
Replies: 9
Views: 386

Re: Newbie + Blend + dark Noesis.App.Theme

I reproduced the steps explained in Unreal guide, Blend section: Create WPF (.NET Framework) application Install Noesis.GUI.Extensions nuget Set one of the Noesis themes in the App.xaml: <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://sch...
by sfernandez
22 May 2023, 12:33
Forum: General Discussion
Replies: 6
Views: 195

Re: Changing GamepadAccept to work as Key_Enter instead of Key_Space

I meant that having the GamepadAccept pressed while a new Enter key press occurs (what you are trying to simulate) should behave the same as if the Space bar key was kept pressed. Our code is not correct in that situation, and fixing it will allow you to convert Space/GamepadAccept to Enter key down...