Search found 3104 matches

by sfernandez
12 Sep 2024, 18:44
Forum: General Discussion
Replies: 3
Views: 315

Re: Dependency Properties of Shader Effect won't animate

Hmmm... VideoEffect sample is also animating the custom effect properties, and I just tried with a simpler xaml (see below) and it works as expected: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xml...
by sfernandez
10 Sep 2024, 11:28
Forum: General Discussion
Replies: 3
Views: 315

Re: Dependency Properties of Shader Effect won't animate

Hi, I guess you have followed our Brush Shaders sample in which we are animating a few properties of the custom shader. I tried with a simpler xaml like the one below and it correctly animates the Time (float) and Color properties: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/prese...
by sfernandez
10 Sep 2024, 11:03
Forum: General Discussion
Replies: 3
Views: 616

Re: System.ComponentModel.EnumConverter

Thanks for the ticket
by sfernandez
02 Sep 2024, 19:02
Forum: General Discussion
Replies: 3
Views: 616

Re: System.ComponentModel.EnumConverter

You should be able to define a TypeConverter for your type the way it is explained in that article [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum Status Although we don't expose the EnumConverter class (could you please create a ticket for this?), I think you won't need it in this...
by sfernandez
02 Sep 2024, 18:44
Forum: General Discussion
Replies: 3
Views: 603

Re: Wpf app with Noesis theme looks different as in xamltoy

I understand now, the problem is that the root element is a custom control and implicit styles only apply when the type matches exactly the same type. So in this case, as there is no Style defined for "workspace_hello.MainWindow" it won't apply any style from the theme. There are two optio...
by sfernandez
28 Aug 2024, 00:01
Forum: General Discussion
Replies: 2
Views: 461

Re: RadioButton binding behavior; getters not always called

I guess you have a binding to the RadioButton IsChecked property, is that binding in TwoWay mode? Using one way bindings has problems now: https://www.noesisengine.com/bugs/view.php?id=3429, because as soon as you click the radio buttons, the binding will be removed and the viewmodel won't be update...
by sfernandez
27 Aug 2024, 23:56
Forum: General Discussion
Replies: 3
Views: 346

Re: Slider with not positive min value slightly fluctuates after decreasing min value

This is clearly a bug in the Slider logic, could you please report it in our bugtracker?
by sfernandez
27 Aug 2024, 23:51
Forum: General Discussion
Replies: 2
Views: 626

Re: The Window style does not apply

Hi, this could be related to some recent change regarding how the Window performs the clear of the background.
Could you please open a ticket about it?
by sfernandez
27 Aug 2024, 23:45
Forum: General Discussion
Replies: 3
Views: 603

Re: Wpf app with Noesis theme looks different as in xamltoy

Hi, Using a Grid as root means that the default value of the Foreground property (Black) is used for TextBlocks, as that property is not inherited from any Control. And because XamlToy uses NoesisTheme.LightBlue.xaml as the theme for the application resources, the black texts look quite good. If you...