Tagged Questions
5
votes
1answer
181 views
Optimizing Performance of Winforms InitializeComponent automatically
I have a program with a full GUI that takes around 750ms to load thanks to InitializeComponent(). After some research, it seems there are a few techniques to improve the time it takes for .NET to ...
2
votes
1answer
163 views
Clean elegant solution to form-class level component collection initializing before Initialize Component?
I am converting an old Vb6 solution to .net 2.0 in vs2010. I've been working in C# for about 3 years now and .net for 5. I don't recall having this problem in C#, but if I want initialize a readonly ...
2
votes
2answers
1k views
How to provide custom code for InitializeComponent?
When you modify column headers of a ListView at design time, the designer generates code to serialize column headers at run-time:
private void InitializeComponent()
{
this.listView1 = new ...
0
votes
4answers
234 views
Application crashes in InitializeComponent()
First off, I'm using Visual Studio 2010, Measurement Studio 2010 plugin, C# and .NET 4.0.
My application receives data from a USB device and graphs the data using a WaveformPlot() [which is a part of ...