Search found 5 matches

by solaris783
19 Feb 2020, 21:43
Forum: General Discussion
Replies: 1
Views: 831

Printing debug text on screen

Is there an easy way to print debug text on screen using Noesis? A print with x,y, a string and ideally a duration? Not using xaml, but a simple c++ function call. If not, how would I go about doing so? Is it a bad idea to use Noesis to print debug text?
by solaris783
12 Oct 2019, 03:34
Forum: General Discussion
Replies: 2
Views: 1377

Specified Font not showing up

I have some xaml that works correctly in WPF but doesn't in Noesis. Working off of IntegrationGLUT from the SDK. Simple control: <ToggleButton Content="&#xF06E;" FontStyle="Normal" FontWeight="Regular" FontFamily="#Font Awesome 5 Free" FontSize="10&qu...
by solaris783
11 Oct 2019, 21:09
Forum: General Discussion
Replies: 2
Views: 1300

Re: How to track down Xaml path errors?

I'm not sure if I'm doing this right but I solved it by pre-loading the resources the xamls reference. a) I thought that because the error said, "xaml not found" that it couldn't find the file. It seems like it doesn't look for a file, it looks for a resource in memory that's supposed to b...
by solaris783
10 Oct 2019, 23:36
Forum: General Discussion
Replies: 2
Views: 1300

How to track down Xaml path errors?

I have this line in my xaml: <ResourceDictionary Source="NocturnalStyle.xaml"/> I get the error: [NOESIS/I] 'NoesisTheme.xaml' loaded [NOESIS/E] Xaml provider not set [NOESIS/E] <memory>(13): Xaml not found 'NocturnalStyle.xaml' The xaml calling NocturnalStyle works in VS Blend and in Kaxa...
by solaris783
07 Oct 2019, 05:39
Forum: General Discussion
Replies: 1
Views: 991

C++ Integration - forwarding keyboard inputs

I'm a beginner at this so bear with me. I was using one of the projects that come with the Noesis SDK: IntegrationGLUT. I added a keyboard handler through the existing glut.h mechanisms (WndProc, WM_KEYDOWN, WM_KEYUP) and called view->KeyDown and view->KeyUp as inputs came in. I added a TextBox but ...