Search found 3 matches

by slight
01 Oct 2020, 06:45
Forum: General Discussion
Replies: 5
Views: 944

Re: C++ TCP server Integration correct use of NotifyEvent Subscription

You have two options: The recommended one is using databinding and MVVM. Almost all our examples follow this approach. Give names to required controls in XAML, get access to them by code using FindName and update corresponding properties, databinding and mvvm can be used for IntegrationGLUT ?
by slight
01 Oct 2020, 01:01
Forum: General Discussion
Replies: 5
Views: 944

Re: C++ TCP server Integration correct use of NotifyEvent Subscription

I assume you read the DataBinding tutorial, did you? Yes i did and i read https://www.noesisengine.com/docs/Gui.Core.SDKGuide.html with this example Slider* slider = view->GetContent()->FindName<Slider>("Luminance"); slider->ValueChanged() += &LuminanceChanged; I didnt quite understan...
by slight
01 Oct 2020, 00:22
Forum: General Discussion
Replies: 5
Views: 944

C++ TCP server Integration correct use of NotifyEvent Subscription

I'm trying to integrate old MFC styled TCP IOCPServer with noesisgui IntegrationGLUT example . There are no examples of doing so and i'm very confused how to correctly work/use Noesis::INotify , INotifyPropertyChanged for it. As i need somehow tell to gui - ListBox that data has to be inserted . In ...