Search found 43 matches

by golgepapaz
04 Oct 2013, 19:17
Forum: General Discussion
Replies: 4
Views: 3240

Re: ListView / ListBox with a Button in each Line

if you know the button name there is a example to how to register click callbacks to a button at runtime.
viewtopic.php?f=3&t=156
by golgepapaz
25 Sep 2013, 22:55
Forum: General Discussion
Replies: 4
Views: 3487

ListBox does not insert items at top

While writing a simple log viewer in unity, I am trying to insert items at top but control insists on adding it to the bottom of the list . Sample XAML and Script <StackPanel x:Name="LogViewerPanel" VerticalAlignment="Bottom" HorizontalAlignment="Center" Opacity="0...
by golgepapaz
23 Sep 2013, 12:01
Forum: General Discussion
Replies: 4
Views: 2450

Re: Performance on Android and IOS devices

if you are talking about fps on unity, please don't forget to turn off Vsync. I get a 450 - 650 fps for control gallery sample on my machine with vsync disabled.
by golgepapaz
21 Sep 2013, 19:00
Forum: General Discussion
Replies: 6
Views: 3463

Re: Padding between buttons

All dependency properties are wrapped with the corresponding Getter and Setter functions. For example, to set the Text dependency property in a TextBlock, you can use the SetText function: NoesisGUIPanel gui = GetComponent<NoesisGUIPanel>(); FrameworkElement root = gui.GetRoot<FrameworkElement>(); ...
by golgepapaz
21 Sep 2013, 10:47
Forum: General Discussion
Replies: 6
Views: 3463

Re: Padding between buttons

alright, thank you. Also added a bug to mantis tracker about noesis crashing seeing it was empty I was not sure whether you are checking it.
by golgepapaz
20 Sep 2013, 20:48
Forum: General Discussion
Replies: 6
Views: 3463

Padding between buttons

I am programmatically adding buttons to a Stackpanel.All is well but there are spaces between buttons as shown in the image below. https://db.tt/o0E30W73 I've tried using SnaptoDevicePixels instead of UseLayoutRounding property at GUIRoot after a Google search as a remedy to the problem but it seem ...
by golgepapaz
01 Sep 2013, 08:39
Forum: General Discussion
Replies: 4
Views: 3126

Re: Creating floaties through script

Canvas SetLeft and SetTop should do the trick Simple example; public class CanvasTest : MonoBehaviour { // Use this for initialization void Start () { var gui = GetComponent<NoesisGUIPanel>(); var root = gui.GetRoot<FrameworkElement>(); Canvas mycanvas = root.FindName<Canvas>("TestCanvas")...
by golgepapaz
31 Aug 2013, 22:26
Forum: General Discussion
Replies: 1
Views: 2282

HitTest in Unity

I am trying to capture whether a mouse event (Left click, Double click etc) happened on NoesisGuiPanel (meaning any visible GUI element) in order to refrain from interacting with game objects in the scene. I've looked VisualTreeHelper::HitTest() but this did not go anywhere part for not really knowi...
by golgepapaz
21 Aug 2013, 15:16
Forum: General Discussion
Replies: 1
Views: 2109

how to Drag&Drop ?

Hi..
Is it possible to do D&D operations with Noesis? I see OnDragEnter and its ilk but no way to initate a DoDragDrop from the source. are there any examples?
by golgepapaz
16 Aug 2013, 16:29
Forum: General Discussion
Replies: 9
Views: 6111

Re: Trial version of Neosis

Could you do the same test in the XamlPlayer and check with the following variants: Test the different MSAA methods and see how the performance change. Check also the GL renderer and tell us the performance. To activate the GL renderer open XamlPlayer.ini (it is autogenerated the first time you lau...