Search found 2568 matches
- 04 Aug 2022, 20:57
- Forum: General Discussion
- Replies: 3
- Views: 66
Re: Binding from MainWindow.xaml vs ResourceDictionary > ControlTemplate
The Template property default value is null, so if you don't specify one for the control style then nothing will be rendered for that control. The previous xaml code is defining an implicit Style for all CustomList controls, so you don't have to manually set the Style property on each instance of yo...
- 03 Aug 2022, 20:25
- Forum: General Discussion
- Replies: 4
- Views: 61
Re: [noesis] Visual is null
I'm pretty sure it could be that, the bug was fixed for NoesisGUI 3.1.2 but I think you are already in 3.1.0, right?
I'll send you a patched version of the 3.1.0 to see if those errors go away.
I'll send you a patched version of the 3.1.0 to see if those errors go away.
- 03 Aug 2022, 19:26
- Forum: General Discussion
- Replies: 3
- Views: 43
Re: Freezable object cannot be made unmodifiable
This error (FontFamily setter) does not seem the same as the previous message (SolidColorBrush), but may be related, probably something in the same Style. But I don't understand how a sealed Style can be modified without coding, just using it in xaml. To get some context, is that Style part of the A...
- 03 Aug 2022, 12:16
- Forum: General Discussion
- Replies: 3
- Views: 43
Re: Noesis crashes Unity when using Unit Tests and forgetting Noesis.GUI.Init()
In Noesis Settings you can change "General Log Level" to "Information" to print the xaml files being loaded, that can narrow the error to a specific file. It would be great if you can provide a sample xaml to reproduce this issue so we can debug it. In theory our code only freeze...
- 03 Aug 2022, 11:54
- Forum: General Discussion
- Replies: 3
- Views: 66
Re: Binding from MainWindow.xaml vs ResourceDictionary > ControlTemplate
Hi, I think the binding path is not correct in the second case, because "{Binding listData, RelativeSource={RelativeSource TemplatedParent}}" means that Panels:CustomList control exposes a property named "listData", instead of referring to a property of the DataContext as you spe...
- 03 Aug 2022, 11:50
- Forum: General Discussion
- Replies: 8
- Views: 111
Re: Threading requirements for Noesis::GUI::Shutdown
Thanks for the report, it is perfect.
- 03 Aug 2022, 11:50
- Forum: General Discussion
- Replies: 1
- Views: 30
- 03 Aug 2022, 11:44
- Forum: General Discussion
- Replies: 1
- Views: 42
Re: Missing in TabControl
This is in C#, right? Yes please, add one ticket for the missing virtual methods and another one for the missing property.
- 03 Aug 2022, 11:41
- Forum: General Discussion
- Replies: 3
- Views: 48
Re: Issue when adding new child elements to a Grid in codebehind.
Hi Peter,
I can't reproduce the problem, in my tests I can add elements in runtime to a panel and they show fine in the screen and in the Inspector.
Would it be possible to get a small sample that reproduces it?
I can't reproduce the problem, in my tests I can add elements in runtime to a panel and they show fine in the screen and in the Inspector.
Would it be possible to get a small sample that reproduces it?
- 02 Aug 2022, 20:19
- Forum: General Discussion
- Replies: 8
- Views: 111
Re: Threading requirements for Noesis::GUI::Shutdown
Hi AnKor, thank you for the examples, we were able to reproduce the errors and to find the source of the problem. It is related to the control templates defined in the theme, there are some objects that are not correctly detached from the creation thread. Could you please report it in our bugtracker...