Search found 2991 matches

by sfernandez
27 Mar 2024, 11:55
Forum: General Discussion
Replies: 4
Views: 258

Re: Noesis Studio and context switch

When using Noesis Studio you won't need to rely on WPF code anymore, just pure Noesis C# (or C++) code for your ViewModels, converters, interactivity and custom controls. And if you are in Unity, all the classes defined in your Unity project will be available in Noesis Studio, so no need to create d...
by sfernandez
27 Mar 2024, 11:41
Forum: General Discussion
Replies: 2
Views: 158

Re: Suggested design/architecture for UI audio?

Hi, 1) As you found, you just have to use the behaviors namespace: xmlns:b="http://schemas.microsoft.com/xaml/behaviors" 2) Thanks @nadjibus for the suggestion. As he mentioned you should use the StyleInteraction.Triggers along with the StyleTriggerCollection to specify the common Triggers...
by sfernandez
27 Mar 2024, 11:31
Forum: General Discussion
Replies: 1
Views: 108

Re: Hierarchical Treeview

Hi, IGrouping is not supported by Noesis, to use a HierarchicalDataTemplate the list should contain the groups, and each group should contain a list of items that you can bind in the template ItemsSource: public class ViewModel { public List<Group> GroupedList { get; } } public class Group { public ...
by sfernandez
27 Mar 2024, 11:22
Forum: General Discussion
Replies: 10
Views: 1784

Re: Getting started with Unreal - lots of confusion

Hi, If you have a way to convert the char id number into some text, then you can specify a converter in the style like this: <Style x:Key="char" TargetType="ContentControl"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ContentControl&quo...
by sfernandez
27 Mar 2024, 11:04
Forum: General Discussion
Replies: 3
Views: 159

Re: Low performance when using BackgroundEffectBehavior.BlurEffect on many elements

Thanks for the ticket, we've found the source of the problem and fixed it for the next release.
by sfernandez
26 Mar 2024, 18:04
Forum: General Discussion
Replies: 8
Views: 3528

Re: Any reason NuGet package for Noesis.GUI.Extensions targets .NET Framework instead of .NET standard?

You are right, that ticket is already resolved and Noesis.GUI.Extensions nuget supports .NET and .NETCore as well as .NET Framework projects since 3.0.9 version. Thanks for pointing this out.
by sfernandez
26 Mar 2024, 17:56
Forum: General Discussion
Replies: 2
Views: 99

Re: UNoesisInstance::GetCachedWidget causes linker error

Thanks for sharing the solution, even if it wasn't a Noesis issue :)
by sfernandez
11 Mar 2024, 12:06
Forum: General Discussion
Replies: 3
Views: 159

Re: Low performance when using BackgroundEffectBehavior.BlurEffect on many elements

Hi, this looks like something is wrong in our code because if the source of the behavior is always the same it should reuse the offscreen texture for all instances. Could you please report this in our bugtracker?
by sfernandez
11 Mar 2024, 11:25
Forum: General Discussion
Replies: 4
Views: 151

Re: Issues with TabControl Highlighting

Just for reference for other users, in the ItemTemplate you shouldn't put a TabItem, as I explained above the TabItem is automatically created by the TabControl when using ItemsSource. So either you use a TextBlock in the TabItem template and bind its text directly to the appropriate item property (...
by sfernandez
08 Mar 2024, 12:27
Forum: General Discussion
Replies: 4
Views: 151

Re: Issues with TabItem highlighting when unecessary

Hi, For a TabControl that uses ItemsSource, TabItems are automatically created by the TabControl for each item in the source collection, and it assigns the style set in ItemContainerStyle property, so this is where you have set your custom TabItem style: <TabControl x:Name="BuildingTabs" I...