how can to avoid duplication of control like comboBox1?

comboBox1.Items.Add("Item 1");
comboBox1.Items.Add("Item 2");
comboBox1.Items.Add("Item 3");


just like in VB, it should be;

with comboBox1
.Items.Add("Item 1");
.Items.Add("Item 2");
.Items.Add("Item 3");
end with