Search found 9 matches

by paevensonKratos
23 May 2014, 20:37
Forum: General Discussion
Replies: 3
Views: 2037

Re: ComboBox in DataTemplate inside Unity

My binding is working properly. Root is just pointing to the Noesis.UserControl. Iv'e tried this code as well. Hi Rob, Based on your xaml, I tried two options to assign a DataTemplate to an item: using the ListBoxItem.ContentTemplate and using the ListBox.ItemTemplate; both worked well. <Grid xmlns=...
by paevensonKratos
23 May 2014, 17:16
Forum: General Discussion
Replies: 3
Views: 2037

ComboBox in DataTemplate inside Unity

Here is the code: XAML DataTemplate <Grid.Resources> <DataTemplate x:Key="InteractionTemplate"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="20"/> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="100&q...
by paevensonKratos
27 Mar 2014, 12:31
Forum: General Discussion
Replies: 2
Views: 1855

Re: Invoke function in custom control from Unity

Is this what you need?
Yes! Perfect! Thanks!
by paevensonKratos
26 Mar 2014, 19:16
Forum: General Discussion
Replies: 2
Views: 1855

Invoke function in custom control from Unity

How would I get the object reference of a custom control from Unity? I was hoping to get it through the NoesisGUIPanel....but I couldn't find it. for example: [Noesis.Extended] [Noesis.UserControlSource("Assets/GUI/CameraControl.xaml")] public class CameraControlGUI : Noesis.UserControl { ...
by paevensonKratos
20 Mar 2014, 17:41
Forum: General Discussion
Replies: 5
Views: 2035

Re: Unexpected number of bytes written

Ok, everything works. Opening and closing Unity is usually my first test.... Bleh. Perhaps it had something to do with opening the other project. Thanks for you help.

-Paul
by paevensonKratos
20 Mar 2014, 16:57
Forum: General Discussion
Replies: 5
Views: 2035

Re: Unexpected number of bytes written

Works fine... Is there cached file that needs to be deleted?
by paevensonKratos
20 Mar 2014, 16:21
Forum: General Discussion
Replies: 5
Views: 2035

Unexpected number of bytes written

I get this error when I build NoesisGUI ->
[DX9] Assets/GUI/Runtime/RuntimeHUD.xaml
Unexpected number of bytes written: 2931 (expected was 16777216)
Not sure what I did to get this...Can you point me in the direction on how to fix it?
by paevensonKratos
12 Mar 2014, 13:43
Forum: General Discussion
Replies: 3
Views: 2259

Re: ReflectionTypeLoadException

Thanks sfernandez for getting back to me so quickly! The fix you sent me was a great help. One addition you may want to add to each function is a check to make sure types != null before each for loop. Otherwise you will get a NullReferenceException when the loop tries to access the types array. :D T...
by paevensonKratos
11 Mar 2014, 20:36
Forum: General Discussion
Replies: 3
Views: 2259

ReflectionTypeLoadException

I have no idea what happened but I now have this error I cannot fix. ReflectionTypeLoadException: The classes in the module cannot be loaded. System.Reflection.Assembly.GetTypes () (at /Users/builduser/buildslave/monoAndRuntimeClassLibs/build/mcs/class/corlib/System.Reflection/Assembly.cs:371) Noesi...