Search found 41 matches

by kayrk
23 Sep 2014, 15:18
Forum: General Discussion
Replies: 2
Views: 2370

Re: When is it coming?

great!
by kayrk
22 Sep 2014, 16:22
Forum: General Discussion
Replies: 2
Views: 2370

When is it coming?

DX11 support.. This is becoming crucial for me I would hate to switch my entire GUI but it's been months and no word really on this being available.(Unity)
by kayrk
17 Jul 2014, 03:48
Forum: General Discussion
Replies: 1
Views: 1711

Sorting a Collection

Is it possible to sort a Collection by a underlying class property?
by kayrk
10 Jul 2014, 03:30
Forum: General Discussion
Replies: 4
Views: 3416

Re: Help with ItemsControl Event Handler

works perfect thanks!
by kayrk
07 Jul 2014, 16:11
Forum: General Discussion
Replies: 4
Views: 3416

Re: Help with ItemsControl Event Handler

Hmm I'm not quite following I setup the event handler for the mouse click but I'm still not sure how to get the underlying BaseComponent. [Noesis.Extended] public class PlayerData : BaseComponent { public PlayerData(string name, byte team = 0x0) { this._name = name; this.team = team; } private strin...
by kayrk
03 Jul 2014, 19:24
Forum: General Discussion
Replies: 4
Views: 2713

Re: Editor Error after Stop Play

I don't know if this makes a difference I stopped the crashing on standalone version by just compiling it for x86 instead of x86_64. I still get the other errors on stopping of the editor. I will get you some files over so you can see what's going on sorry i've been busy.
by kayrk
30 Jun 2014, 16:51
Forum: General Discussion
Replies: 4
Views: 3416

Help with ItemsControl Event Handler

I'm not sure how to go about having an event handler on a child item of an ItemsControl using a DataTemplate. For example how could I make it where when a user clicks an item in the stackpanel it fires off an event. Here is my xaml for the ItemsControl: <ItemsControl x:Name="BlueTeam" Grid...
by kayrk
21 Jun 2014, 00:18
Forum: General Discussion
Replies: 8
Views: 6631

Re: Displaying selected item in databound Combobox

Yeah that's what I've been doing thanks.
by kayrk
20 Jun 2014, 01:48
Forum: General Discussion
Replies: 4
Views: 2713

Editor Error after Stop Play

I get this error everytime after I stop play. NullReferenceException: Object reference not set to an instance of an object Noesis.UIRenderer.Noesis_NotifyDestroyRenderer (Int32 rendererId) (at Assets/Plugins/NoesisGUI/Scripts/Core/NoesisUIRendererImports.cs:73) Noesis.UIRenderer.Destroy () (at Asset...
by kayrk
19 Jun 2014, 03:38
Forum: General Discussion
Replies: 8
Views: 6631

Re: Displaying selected item in databound Combobox

I understand the problem now. You will need to specify the SelectionBoxItemTemplate to define how to show the selected item in the combo box: <ComboBox Width="200" VerticalAlignment="Center" ItemsSource="{Binding}"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock Tex...