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
0answers
26 views
How can I remove a checkbox from a panel through the Designer?
This is probably too easy, but... Can anyone tell me how to add or remove a checkbox from a panel by using the Designer? The only samples I could find online had the code nside an arbitrary method ...
0
votes
2answers
77 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 ...