Tagged Questions
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
2answers
82 views
IntializeComponent keeps getting overwritten
I have some conditionals in my InitializeComponent which affect the layout based on some variables. Unfortunately, it seems like whenever I rebuild my application, this code is reverted back to its ...