Search found 49 matches
- 03 Jun 2019, 16:30
- Forum: General Discussion
- Replies: 5
- Views: 2291
Re: Game dialog/window layout
ok,sorry,i just want to bookmark it. just find the function;Please, do not resurrect old threads that are marked as solved. Create new ones. Thanks!
- 03 Jun 2019, 16:27
- Forum: General Discussion
- Replies: 12
- Views: 548
Re: a performence question
Our application framework is setup to render continuously everything per frame. This is the common scenario in videogames. But you can avoid that in your own integration if you want. See for example the IRenderer interface: /// Applies last changes happened in the view. This function does not inter...
- 03 Jun 2019, 11:19
- Forum: General Discussion
- Replies: 11
- Views: 2237
Re: Simulating modal dialog inside a view
Each UserControl is defined in separate xaml files, then you can reference them in any other xaml just by including an instance of the code-behind class: MyUserControl.xaml <UserControl x:Class="Testing.MyUserControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http:/...
- 03 Jun 2019, 11:17
- Forum: General Discussion
- Replies: 11
- Views: 3181
Re: ListBox item recycling for large lists
In MVVM you will expose an ObservableCollection for the items, and changes done to that collection will reflect in the UI. In order to notify of changes in the data items so UI can be automatically updated, your data must implement the INotifyPropertyChanged interface. You can read more about this ...
- 03 Jun 2019, 11:16
- Forum: General Discussion
- Replies: 2
- Views: 226
Re: is noesis inside contains win32 dialog?
ok,thanksNoesis does not implement a File browser dialog. You can directly use an operating system dialog (via Win32 in Windows for example), or you can create your own UserControl to render it using Noesis inside your window.
- 03 Jun 2019, 04:06
- Forum: General Discussion
- Replies: 2
- Views: 226
is noesis inside contains win32 dialog?
for example win32 api: SHBrowseForFolder
do I need to implement it by myself?
do I need to implement it by myself?
- 02 Jun 2019, 16:06
- Forum: General Discussion
- Replies: 11
- Views: 2237
Re: Simulating modal dialog inside a view
Iunderstand thanks。could put to a new xaml fileI mean each usercontrols will put in a different .xaml file?I don't understand the question, could you please elaborate a bit more?usercontrol has to put in mainwindow.xml?
- 02 Jun 2019, 14:52
- Forum: General Discussion
- Replies: 11
- Views: 3181
Re: ListBox item recycling for large lists
Yes, we have VirtualizingStackPanel implemented and it is the default items panel for ListBox and ListView. You can also manually use it any ItemsControl by specifying it in the ItemsPanel property. This means only visible items are generated and layout, so you can load lists with hundreds of items...
- 02 Jun 2019, 14:44
- Forum: General Discussion
- Replies: 11
- Views: 964
Re: navigation between panel
i see, thanksCollapsed controls are not processed during layout so they don't affect the performance.
Although the elements in that tree will be initially created, so the memory consumption will be bigger when having all the screens defined in the main window.
- 02 Jun 2019, 14:43
- Forum: General Discussion
- Replies: 11
- Views: 3181
Re: ListBox item recycling for large lists
Yes, we have VirtualizingStackPanel implemented and it is the default items panel for ListBox and ListView. You can also manually use it any ItemsControl by specifying it in the ItemsPanel property. This means only visible items are generated and layout, so you can load lists with hundreds of items...