05-30-2024 01:36 AM
Hi all,
I'm developing an OI in .NET C# with WinForm. I started from NI example.
I would like to use Winform extended control to have a better design and ergonomy.
For that, I use "ObjectListView" package which embedded an extended ListView.
In my application, the list view flickers although in a traditionnal Winform app, there is no flickering.
I see some possible fix like adding :
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
But it's not working with my application.
Probably due to the fact that, I don't use "Application.Run" but "LaunchTestStandApplicationInNewDomain.LaunchProtected"
How can I execute these 2 instruction in an OI context?
Thanks in advance for your help
06-29-2024 10:08 PM
I don't know what you mean by Object List View, in fact, it's completely unnecessary to introduce other packages.
brother, just use the native Winform Listview control and it's okay,
I am currently working on this part of the development and happened to be using Listview (also start with "LaunchTestStandApplicationInNewDomain.LaunchProtected"), which is easy to achieve without flickering.