Search found 178 matches
- 22 May 2020, 16:34
- Forum: General Discussion
- Replies: 6
- Views: 1094
Re: Noesis.App.Displays.Win32 Version 3.0 has dependency on shcore.dll = not compatible with Windows 7
We are using version 2.2 + DirectX 11.1 on Windows 7 SP1 with the following platform update (which provides partial support for DirectX 11.1 on Windows 7). https://docs.microsoft.com/en-us/windows/win32/direct3darticles/platform-update-for-windows-7?redirectedfrom=MSDN Does the new version 3.0 uses ...
- 25 Apr 2020, 10:31
- Forum: General Discussion
- Replies: 3
- Views: 377
Re: Fit a window into XAML content
Thank you. Will try to mimic that implementation. We are still using version 2.2 of NoesisGUI. I hope that will not block this feature.Basically what we did is call Measure(INF, INF) on the content, and then AdjustWindowRect() to calculate the appropriate window size.
- 23 Apr 2020, 08:39
- Forum: General Discussion
- Replies: 3
- Views: 377
Fit a window into XAML content
Hi, I want to create a popup window populated with a XAML, and I want that window to fit the size of the XAML content. How can I know the correct size for the window. # In WPF I think I can use the property SizeToContent to let the window automatically adjust its size. https://docs.microsoft.com/en-...
- 29 Oct 2019, 06:22
- Forum: General Discussion
- Replies: 1
- Views: 781
Cannot bind the Content of GridViewColumnHeader
Hi, I have a XAML as follows, which tries to bind the Content of a GridViewColumnHeader. However, the binding is not evaluated. <ListView> <ListView.View> <GridView> <GridViewColumn> <GridViewColumnHeader Content="{Binding BindingText}"/> </GridViewColumn> </GridView> </ListView.View> </ListView> De...
- 15 Oct 2019, 03:36
- Forum: General Discussion
- Replies: 3
- Views: 511
Re: Customizing UriConverter
Thanks. I added a new issue here: https://www.noesisengine.com/bugs/view.php?id=1569
I will discuss with the team on how to workaround this for the moment.
I will discuss with the team on how to workaround this for the moment.
- 11 Oct 2019, 08:55
- Forum: General Discussion
- Replies: 3
- Views: 511
Customizing UriConverter
Hi, We currently place our XAMLs as follows, and access them using our custom XAML provider in our code. <RootDir>/<DllName>/*.xaml Now, from FirstDll/A.xaml, we want to load SecondDll/B.xaml as a resource as follows: <ResourceDictionary Source="/SecondDll:component/B.xaml"/> (We use this format so ...
- 24 Jul 2019, 09:48
- Forum: General Discussion
- Replies: 4
- Views: 2016
Re: Ellipse Aliasing compared to Curved closed Path
I am having the same experience as well when creating a round-shaped buttons or controls.
WPF renders the shape better than Noesis.
+1 for fixing this issue.
WPF renders the shape better than Noesis.
+1 for fixing this issue.
- 19 Jul 2019, 12:01
- Forum: General Discussion
- Replies: 11
- Views: 1453
Re: How to Activate/Deactivate Noesis View if the hosting window is a child window
Yes, thank you. but could you update the TSF code to comment out the line inside TSF::HideKeyboard ?
- 19 Jul 2019, 03:12
- Forum: General Discussion
- Replies: 11
- Views: 1453
Re: How to Activate/Deactivate Noesis View if the hosting window is a child window
In my tests I wasn't receiving WM_SETFOCUS on child windows, so I didn't consider that handling focus could be an option for your problem. In my integration code, I am calling SetFocus on any WM_{L,R,M}BUTTONDOWN inside the Noesis host window. I think that's why I am receiving WM_SETFOCUS on my chi...
- 16 Jul 2019, 09:17
- Forum: General Discussion
- Replies: 11
- Views: 1453
Re: How to Activate/Deactivate Noesis View if the hosting window is a child window
I can't find in Win32 other way to handle activation/focus of child windows than tracking the active child window from the application code using WM_MOUSEACTIVATE. But not only for Noesis windows, you should track WM_MOUSEACTIVATE for all application windows (top-level included). Is that something ...