Search found 2702 matches
- 12 Jan 2023, 19:03
- Forum: General Discussion
- Replies: 3
- Views: 133
Re: Dynamically bind button commands in Data Template Items
If you don't assign the _previewSkinButtonCommand member in the Unity inspector you need to manually create it (as shown in Unity documentation for AddListener ): public class SkinPanelObject { public NoesisEventCommand _previewSkinButtonCommand = new NoesisEventCommand(); public NoesisEventCommand ...
- 11 Jan 2023, 16:19
- Forum: General Discussion
- Replies: 5
- Views: 144
Re: Best way to show a noesis UI within Unity
I suggest to use a single camera and play with the visibility of elements in the NoesisView to show/hide parts of the UI. That is exactly what Menu3D sample is doing.
- 11 Jan 2023, 16:14
- Forum: General Discussion
- Replies: 4
- Views: 111
Re: CustomConverter: What is the target type of a DoubleAnimation targeting RenderTransform.X?
Hi Manuel, The "To" property of a DoubleAnimation is a nullable (in WPF a Nullable<double>, and in Noesis a Nullable<float>). class NS_GUI_ANIMATION_API DoubleAnimation: public DoubleAnimationBase { ... /// Gets or sets the animation's ending value //@{ const Nullable<float>& GetTo() c...
- 10 Jan 2023, 18:45
- Forum: General Discussion
- Replies: 5
- Views: 144
Re: Best way to show a noesis UI within Unity
It is strange, I just downloaded that github sample, opened Menu3D-blend.sln in Blend for Visual Studio (2019 or 2022), then I built the solution (which restored the Noesis.GUI.Extensions nuget), and pressing Start (F5) executed the sample fine. Opening from the solution explorer Assets/NoesisGUI/Sa...
- 10 Jan 2023, 18:19
- Forum: General Discussion
- Replies: 9
- Views: 254
Re: ScrollViewer Custom Manipulation issues
ScrollViewer defines the GetScrollInfo() method as protected, so inheritors can use it. Aren't you inheriting from the ScrollViewer class?
- 10 Jan 2023, 18:08
- Forum: General Discussion
- Replies: 3
- Views: 123
Re: best way to track down this error: 'Converter<Brush>' binding converter failed to convert value
Hi Sam, It seems that under some conditions the second error message is not produced, this is a bug in our binding code. Could you please report it in our bugtracker? I will provide you a patched library for 3.1.6 version so you can get the binding information to help you find where the error occurr...
- 09 Jan 2023, 17:12
- Forum: General Discussion
- Replies: 3
- Views: 262
Re: Noesis 3.20b1 Noesis::GUI::Shutdown() crashes
Hello, could you please open a ticket in our bugtracker attaching a minidump of the crash?
- 09 Jan 2023, 17:09
- Forum: General Discussion
- Replies: 3
- Views: 123
Re: best way to track down this error: 'Converter<Brush>' binding converter failed to convert value
Hi Sam, We have a string to brush converter that is probably just missing somewhere (not sure if this is the best way to do this - but we use it to convert string values like #ff00ff to a Brush using Brush.Parse()) There is a default brush converter that already converts strings like "#FF00FF&q...
- 09 Jan 2023, 16:37
- Forum: General Discussion
- Replies: 4
- Views: 160
Re: lepoco/wpfui
Hi, I don't have the time to analize all the classes, but giving a fast look over the project it seems to be a normal library of WPF controls and extensions, so I think it would be feasible for you to port what you need into C++ to use it in your project. If you find a specific WPF feature that is m...
- 09 Jan 2023, 13:24
- Forum: General Discussion
- Replies: 3
- Views: 93
Re: Is it possible to completely disable the tab button from changing focused control?
Great, marking this as solved.