Search found 47 matches

by digimbyte
08 Jun 2019, 05:29
Forum: General Discussion
Replies: 16
Views: 4975

Re: How to get Actual Size programmatically based on internal content?

I've been working on a data structure to handle the buttons but still, no progress on clamping elements to the view https://cdn.discordapp.com/attachments/581319501312819201/586752487969783818/unknown.png I've moved code around so it should add to the uiRoot before calling ActualWidth however, I nee...
by digimbyte
06 Jun 2019, 05:51
Forum: General Discussion
Replies: 16
Views: 4975

How to get Actual Size programmatically based on internal content?

I'm looking at dynamic menu's that can be clamped to within screen space but I can't get the ActualHeight/Width to set the offsets. I saw in an older thread that this depends on the UI being passed to the renderer first. but it was never explained the process of doing such. so I was wondering how I ...
by digimbyte
06 Jun 2019, 02:11
Forum: General Discussion
Replies: 4
Views: 2113

Re: EntryPointNotFoundException?

Found the problem, the Noesis.dll under Assets\NoesisGUI\Plugins\Libraries\Windows\x86_64 was from the older version and was not updated or corrupted I had to close unity down to delete the Noesis including the dll (you could probably just delete the dll, but I wanted a clean install) then loaded un...
by digimbyte
06 Jun 2019, 00:07
Forum: General Discussion
Replies: 4
Views: 2113

Re: EntryPointNotFoundException?

Unity 2018.4
I'm not sure which samples you mean, but the provided samples in the package do work in a clean project
it was working before the update but I had to upgrade to .net 4.x api if that matters
by digimbyte
05 Jun 2019, 08:10
Forum: General Discussion
Replies: 4
Views: 2113

EntryPointNotFoundException?

I finally got around to updating to 2.2.2 and the fixes and updates look promising I encountered some errors I was wondering if I could get help with. EntryPointNotFoundException: Long_GetStaticType Noesis.NoesisGUI_.Long_GetStaticType () (at Assets/NoesisGUI/Plugins/API/Proxies/NoesisGUI_.cs:59) No...
by digimbyte
24 Feb 2019, 10:39
Forum: General Discussion
Replies: 1
Views: 624

Handling mouse events on Gui with c#

I've searched on google for the last few days but I can't seem to find any code examples or documentation of how to handle mouse events in c# https://www.noesisengine.com/docs/Gui.Core._UIElement.html I'm interested in detecting closing panels if the user clicks on some other part of the UI or in wo...
by digimbyte
23 Feb 2019, 14:10
Forum: General Discussion
Replies: 2
Views: 513

Re: Spawn Menu at Position

I have been playing with it further public void StaticMenu(object sender, RoutedEventArgs e) { Button origin = ((Noesis.Button)sender); Point position = origin.PointToScreen(new Point(10f , 0f)); Menu.Margin = Thickness.Parse(position.X.ToString() + "," + position.Y.ToString() + ",0,0...
by digimbyte
23 Feb 2019, 12:12
Forum: General Discussion
Replies: 2
Views: 513

Spawn Menu at Position

Hello, I've been getting along with my GUI project for a while but I have come across a minor annoyance when dealing with relative and absolute positions of elements in this case, I have a button that needs to spawn a menu "below" it. I am looking at spawning a Grid at that buttons positio...
by digimbyte
31 Jan 2019, 13:58
Forum: General Discussion
Replies: 1
Views: 555

PasswordBox and SecureString

Does Noesis Support secureString property?
seems kind of important.
https://docs.microsoft.com/en-us/dotnet ... rePassword
by digimbyte
30 Jan 2019, 23:20
Forum: General Discussion
Replies: 2
Views: 2985

Re: Some questions with working with Noesis [Unity]

Thanks for the response! this answers a lot of the questions I've been looking for