Search found 6 matches

by jgraham
20 Jan 2015, 17:06
Forum: General Discussion
Replies: 1
Views: 1091

OpenGL 4.x support for Mac

Are there any plans to enable OpenGL 4.x support for OS X? I am running with Ogre bindings and am unable to open an OpenGL 4.x context. The latest context I can open is OpenGL 2.1.
by jgraham
17 Oct 2014, 19:22
Forum: General Discussion
Replies: 3
Views: 1952

Re: Forcing a XAML to load via a throw away renderer

Thanks for the info, but it looks like UpdateLayout is not exposed to me. I must be on an older version.
by jgraham
15 Oct 2014, 19:06
Forum: General Discussion
Replies: 3
Views: 1952

Forcing a XAML to load via a throw away renderer

Hello, So I am attempting to load a xaml dynamically with the following line: user_control_ = Noesis::Gui::LoadXaml<Noesis::Gui::FrameworkElement>(xaml_filename.c_str()); However when I try to find the children or access any nodes under this element, I get a value of 0. NsSize numChildren = VisualTr...
by jgraham
25 Sep 2014, 22:26
Forum: General Discussion
Replies: 4
Views: 2435

Re: Dynamically adding a UserControl to a ListBox

I will look into it, right now I am trying the StackPanel approach. Either approach sounds like it will work. I also saw something about using a DataTemplateSelector here (http://www.noesisengine.com/forums/viewtopic.php?f=3&t=333&p=2699#p2699). But it appears to not be implemented. Is that ...
by jgraham
24 Sep 2014, 22:49
Forum: General Discussion
Replies: 7
Views: 3954

Re: DataTemplateSelector in Unity Version

Has this been implemented yet? I didn't see anything in Mantis for it.
by jgraham
24 Sep 2014, 21:27
Forum: General Discussion
Replies: 4
Views: 2435

Dynamically adding a UserControl to a ListBox

What is the best way to add multiple different UserControls to a ListBox at runtime? Do I need to always use a DataModel when adding lines to a ListBox? Here are some options that I can think of: 1. Tie each unique UserControl to a DataTemplate. I don't think this approach is possible because the Da...