// Instance Initialization Syncfusion.Windows.Forms.Tools.EditableList myListBox = new Syncfusion.Windows.Forms.Tools.EditableList(); // Instance Naming this.myListBox.Name = "myListBox"; // For Metro Style private void buttonAdv1_Click(object sender, EventArgs e) { editableList1.Style = Syncfusion.Windows.Forms.Appearance.Metro; //SkinManager.SetVisualStyle(editableList1, VisualTheme.Metro); } //For Default Style private void buttonAdv2_Click(object sender, EventArgs e) { editableList1.Style = Syncfusion.Windows.Forms.Appearance.Default; //SkinManager.SetVisualStyle(editableList1, VisualTheme.Office2010Black); } |