Search found 27 matches

by ck_russ
15 Sep 2020, 08:19
Forum: General Discussion
Replies: 5
Views: 2251

Re: [Feature] Add Noessis Gui Binding generator to v3.0

I did not see a ticket for this so I've added it: #1790

I'd also love to see this added to Noesis. Would be a major QoL improvement.
by ck_russ
28 Aug 2020, 08:44
Forum: General Discussion
Replies: 8
Views: 3547

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

I believe that's clear. .NET Core 3 is required for WPF, but .NET Core 3 only started in .NET Standard 2.1. However, .NET Standard 2.1 also kills off .NET Framework support. So, if you migrated there, you end up with the same problem in reverse and even worse since using .NET Core targeted releases ...
by ck_russ
27 Aug 2020, 08:26
Forum: General Discussion
Replies: 8
Views: 3547

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

I ask because it seems all the other Noesis packages target .NET Standard. This (targeting of .NET framework) causes a slight issue in .NET Core projects that use Noesis.GUI.Extensions since you get the ever ominous little yellow triangle of doom on your dependencies. I believe I could just download...
by ck_russ
10 Aug 2020, 05:16
Forum: General Discussion
Replies: 7
Views: 2289

Re: Unable to set Storyboard Target in code

Hi, do you plan to get this/these patched up for the next release? I'm always conflicted about whether to report these sort of issues on the forum or in the bugtracker. Thanks.
by ck_russ
06 Aug 2020, 21:18
Forum: General Discussion
Replies: 7
Views: 2289

Re: Unable to set Storyboard Target in code

There's another possibly related issue here as well. It seems that Storyboards are not inheriting their FillBehavior. Here is a XAMLToy example: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Rectan...
by ck_russ
06 Aug 2020, 12:21
Forum: General Discussion
Replies: 7
Views: 2289

Re: Unable to set Storyboard Target in code

I can't check it right now but I think this happens because the Storyboard is created in code and launched with no parameters Begin, we probably have something wrong in our code in that case. Could you please try calling instead sb.Begin(CodeButton); Yip, that's the issue. Works fine when specifyin...
by ck_russ
06 Aug 2020, 10:03
Forum: General Discussion
Replies: 7
Views: 2289

Unable to set Storyboard Target in code

Here is a sample with an identical storyboard in code behind and XAML. The XAML storyboard works fine, but in the code behind with Noesis I get "Cannot Begin Storyboard, Target not found" <StackPanel> <Button x:Name="XAMLButton" Width="50" Height="50" Backgrou...
by ck_russ
20 Jul 2020, 09:13
Forum: General Discussion
Replies: 2
Views: 1046

Unable to set Row/Column of items within an ItemsControl with an ItemsTemplatePanel Grid style

As per topic, here is a XAMLToy ready example: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <ItemsControl> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <Grid> <Grid.RowDefinitions> <RowDefinition/> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinition...