Components / Add and Remove Components
Add and Remove Components

Add InputPanel Components

You can add input components to the InputPanel control through designer or through code.

Using the Designer

To add an input component to InputPanel using the designer:

  1. Select the C1InputPanel control and click the smart tag to open the C1InputPanel Tasks menu.
  2. Click the Add New Item ComboBox and select an input component from the list of items. In this example, we are adding an InputImage component.
    Add image component at design time
  3. Set Image property of the InputImage component to display an image and build your project.

Through Code

  1. Create a new instance of C1InputPanel class to add the InputPanel control to your form.
    private void Form1_Load(object sender, System.EventArgs e)
            {
            C1InputPanel NewPanel = new C1InputPanel();
            Controls.Add(NewPanel);
            }                 
    
  2. Create an instance of the InputImage component, specify the source image and use the Add method to add it to the InputPanel control.
    InputImage NewImage = new InputImage();
    NewImage.Image = Image.FromFile("[your image location/name]");
    NewPanel.Items.Add(NewImage);               
    
  3. Run the program and observe that your image now appears in the InputPanel control.

Remove InputPanel Components

You can remove an input component from the InputPanel control through designer as well as through code.

At design time, in the form window, you can simply select the control and press Delete key to remove an InputPanel component. However, when operating through the C1InputPanel Item Collection Editor, use the following steps to remove a component from the InputPanel control.

Using the Designer

  1. Open the C1InputPanel Item Collection Editor.
  2. In the Members pane, select the component you wish to remove and then click the Remove button Remove button.
  3. Click OK to close the C1InputPanel Collection Editor.

Through Code

Input components can be removed from input panel using the InputComponentCollection.Remove method. The example below removes an InputButton component from the panel.

c1InputPanel1.Items.Remove(inputButton1);           
See Also