Search found 17 matches

  • 1
  • 2
by jinfox
Today, 13:19
Forum: General Discussion
Replies: 0
Views: 28

Font Importer issue in Unreal whereas font is being displayed correctly

Hi, I am currently trying to declare a list of FontFamily Resources that I can reuse in styles for example like so : <FontFamily x:Key="FontFamily.Helvetica"> ../Fonts/#Helvetica </FontFamily> This works both in the Blend solution and in Unreal runtime. However I have an issue when reimpor...
by jinfox
Today, 12:59
Forum: General Discussion
Replies: 2
Views: 149

Re: Tab Control Content Presenter gets Local Vertical Alignment Top instead of respecting the control template

It was indeed what was missing.
I assumed the default behavior of the content would be to stretch but it is now working appropriately with the proper VerticalContentAlignment on TabItem's Style.
Thank you
by jinfox
26 Apr 2024, 15:39
Forum: General Discussion
Replies: 2
Views: 149

Tab Control Content Presenter gets Local Vertical Alignment Top instead of respecting the control template

Hello everyone, I am currently creating a template for TabControl and for some reason, there is a discrepancy between what is displayed on Blend and what is displayed in unreal. This is the Control Template I have assigned to the TabControl : <ControlTemplate TargetType="{x:Type TabControl}&quo...
by jinfox
15 Apr 2024, 10:11
Forum: General Discussion
Replies: 2
Views: 126

Re: Do other components have a Template argument?

Several things can be done to avoid duplication. First of all, in your example, BasedOn is a property that can be assigned to Styles, but not to Control template <Style TargetType="{x:Type Grid}"> <!-- This need to exist somewhere --> </Style> <Style x:Key="FooBar.Grid" TargetTyp...
by jinfox
26 May 2021, 12:15
Forum: General Discussion
Replies: 3
Views: 5884

Re: Issue with StoryboardCompletedTrigger not calling the InvokeCommandAction action

Hello! Sorry for the delay in my reply. I have tested your behavior and unfortunately it is the whole StoryboardCompletedTrigger that seems not to trigger at the end of the animation (even a simple ChangePropertyAction wouldn't change the color of a background for example). If this makes a differenc...
by jinfox
10 May 2021, 15:14
Forum: General Discussion
Replies: 3
Views: 5884

Issue with StoryboardCompletedTrigger not calling the InvokeCommandAction action

Hello I was trying to use StoryboardCompletedTrigger but however StoryboardCompletedTrigger.StoryboardChanged is correctly called and the event is attached but when the storyboard ends, it doesn't call the function. <Grid Name="PART_mainGridLayout" > <Grid.Resources> <Storyboard x:Key=&quo...
by jinfox
30 Mar 2021, 17:58
Forum: General Discussion
Replies: 3
Views: 795

Re: Freezable Collection issue (appear null) as dependency property xaml

It worked. Thank you!
by jinfox
29 Mar 2021, 12:30
Forum: General Discussion
Replies: 3
Views: 795

Freezable Collection issue (appear null) as dependency property xaml

Hello, We have created a Freezable collection of framework element to be able to create static collection as dependencyProperties like so : C#: public class ParameterCollection : FreezableCollection<ParameterViewData> { } public class ParameterViewData : FrameworkElement { ... } public class TextCon...
by jinfox
28 Apr 2020, 10:43
Forum: General Discussion
Replies: 6
Views: 1634

Re: Blend for Visual Studio 2017 Issues

Hello,

You might be missing an extension on your Blend for Visual studio software.
https://www.nuget.org/packages/Noesis.GUI.Extensions/

Can you make sure that you have this Nuget Package installed?
by jinfox
05 Mar 2020, 12:47
Forum: General Discussion
Replies: 6
Views: 4857

Re: Request: FlowDirection (StackPanel, WrapPanel)

Hello, I am sorry to dig this post back up but has this been implemented? It does not seem to be working on Noesis (whereas Blend seem to understand it correctly) Here is a sample of code that I was trying to make work : <DockPanel FlowDirection="LeftToRight"> <Grid Name="PortraitZone...
  • 1
  • 2