Search found 141 matches

by Scherub
18 Sep 2014, 07:12
Forum: General Discussion
Replies: 9
Views: 3951

Re: [Unity] How to set HeaderedContentControl header with st

Are you sure it's a good idea to change SetHeader to take a string? I may be wrong but I think the Header of the HeaderedContentControl in WPF is of type object so it's possible to pass even more complex objects in there. And I guess certain things would become more difficult because it would probab...
by Scherub
09 Sep 2014, 08:43
Forum: General Discussion
Replies: 6
Views: 2949

Re: Can't access bug tracker

Oh, you're right. I missed that you were only trying to access the embedded version. I get the same error:
Blocked by Content Security Policy
This page has a content security policy that prevents it from being embedded in this way.
by Scherub
09 Sep 2014, 03:41
Forum: General Discussion
Replies: 6
Views: 2949

Re: Can't access bug tracker

I have no problems accessing the bug tracker using Firefox. :)
by Scherub
08 Sep 2014, 03:02
Forum: General Discussion
Replies: 1
Views: 1876

[Unity] VisualStateManager

Hello, I just came across another few problems. I tried to style a button and add some animations. Doing this using triggers worked fine, but not when I tried to use the suggested VisualStateManager. Unfortunately I'm not really that familiar with the VisualStateManager as I'm more used to triggers....
by Scherub
07 Sep 2014, 20:02
Forum: General Discussion
Replies: 1
Views: 1879

[Unity] Style-Inheritance

Hello, a few days ago I stumbled over another problem. This time with style inheritance from resource dictionaries that doesn't seem to work. First I thought the problem was that Noesis doesn't support deriving from a default (target-type/ key-less) style. So I gave the style a certain key but that ...
by Scherub
07 Sep 2014, 18:01
Forum: General Discussion
Replies: 5
Views: 3759

Re: [Unity] Binding of IsSelected-Property of ListBoxItem

After upgrading to v1.1.11 and spending a few hours to fix a few things I can confirm that it works. BUT there is another problem with class inheritance. I'll try to give you a short example: I introduced a simple base class BaseMenuEntry that does more or less the same as the old BuildMenuOption. T...
by Scherub
03 Sep 2014, 19:06
Forum: General Discussion
Replies: 5
Views: 3759

Re: [Unity] Binding of IsSelected-Property of ListBoxItem

That works! Thanks a lot! :)
by Scherub
03 Sep 2014, 16:10
Forum: General Discussion
Replies: 4
Views: 3064

Re: [Unity] Click through

Thank you all for your hints and tips. I don't think Unity's new event system will make a big difference tbh, at least not from what I saw when I glanced over it. The solution for me at the moment is that the behaviour that is responsible for setting up Noesis and the main view model also queries ev...
by Scherub
02 Sep 2014, 13:44
Forum: General Discussion
Replies: 5
Views: 3759

[Unity] Binding of IsSelected-Property of ListBoxItem

Hello, I just came across the problem that apparently I cannot bind the IsSelected property of a ListBoxItem to a custom property of my class. I have a collection of items that gets displayed but when I select an item it doesn't change the bound property. I have at least one workaround in mind that ...
by Scherub
25 Aug 2014, 20:32
Forum: General Discussion
Replies: 4
Views: 3064

[Unity] Click through

Hello, I've a question regarding click through. Until now it hasn't really been a problem as most of my current gui stuff were just tests for several game component tests. But now that various game components come together I finally created various user controls that I integrated into my game world....