InfoConnect API Guide
Walkthrough / Customize the User Interface / Dynamically Change the User Interface
In This Topic
    Dynamically Change the User Interface
    In This Topic

    You can dynamically show or hide controls on the user interface to provide a customized user experience. You can also enable or disable controls and change the actions that are mapped to controls.

    You can manipulate any control that is configured with the UI Designer. InfoConnect does not provide programmatic access to other controls.

    This walkthrough shows how to:

    Add a Custom Control in the UI Designer

    Display the Control

    Map an Action to the Control

    Add a Custom Control in the UI Designer

    Before you open Visual Studio, you'll need to add the custom controls you want to access in the InfoConnect UI Designer.

    To create a custom control

    1.  Open the InfoConnect workspace, create an IBM3270 session with a host name of "demo:ibm3270.sim", and then  
      save the session as demoSession.rd3x in the default folder (...\myDocuments\Micro Focus\InfoConnect.)
            
    2. On the Appearance tab, open the UI Designer.
    3. On the UI Designer, under Insert Controls, select Tab to add a custom tab.
    4. Under Settings, change the label of the new tab to Custom and clear the Visible setting so the tab is not visible by default.
    5. Note the Identifier for the Custom Tab (tab14) in the Settings pane. We'll need this ID to identify the control when we access it from the API.
    6. Select the Custom Tab and  then click Group to add a Group to the tab.
    7. Click Button to add a new button to the tab.
    8. Note the Identifier for the button in the Settings pane.
      In this example, we have a tab with an identifier of "tab14" and a button with an identifier of "button16."
    9. Click Select Action, choose to map the action to Open URL, and then enter the URL you want to open.
    10. Back in the UI Designer, click OK and then enter the name of the new Ribbon (.xuml) file.
      InfoConnect configures your session to use the new Ribbon file. 
    11. Save the session.

     

    Display the Control

    This sample shows how to dynamically display a tab on a session that you have configured previously in the UI Designer.

    To display a control for a specific screen or command

    1. In Visual Studio, create a new Console Application project and add references for the following InfoConnect assemblies. (Depending on your version of Visual Studio, these can be found either on the .NET tab or under Assemblies | Extensions.)

      Attachmate.Reflection
      Attachmate.Reflection.Framework
      Attachmate.Reflection.Emulation.IbmHosts

    2. Replace all the code in the Program.cs file with the following code.
      This code opens the InfoConnect session with the custom Ribbon that you configured earlier. It also adds an event handler that can be used to identify screens or commands that have been entered.
      Add event handler
      Copy Code
      using System;
      using System.Collections.Generic;
      using System.Linq;
      using System.Text;
      using System.Threading.Tasks;
      using Attachmate.Reflection.UserInterface;
      using Attachmate.Reflection.Emulation.IbmHosts;
      using Attachmate.Reflection.Framework;
      namespace DisplayControl
      {
          class Program
          {
              static void screen_NewScreenReady(object sender, EventArgs e)
              {
                  throw new NotImplementedException();
              }
             
              static void Main(string[] args)
              {
                  //Start a visible instance of InfoConnect or get the instance running at the given channel name
                  Application app = MyReflection.CreateApplication("myWorkspace", true);
      
                  //Create a terminal from the session document file
                  string sessionPath = Environment.GetEnvironmentVariable("USERPROFILE") + @"\Documents\Micro Focus\InfoConnect\demoSession.rd3x";
                  IIbmTerminal terminal = (IIbmTerminal)app.CreateControl(sessionPath);
                                                                      
                  //Make the session visible in the workspace
                  IFrame frame = (IFrame)app.GetObject("Frame");
                  IView view = frame.CreateView(terminal);
      
                  //Create a handler for the NewScreenReady Event
                  IIbmScreen screen = terminal.Screen;
                  screen.NewScreenReady += screen_NewScreenReady;
      
                  System.Console.ReadLine();
              }
          }
      }
      
       
      
    3. Add the following code to the event handler you added above. This code gets the UIMode container that includes all of the custom controls and then gets the control for the tab based on its control identifier. After it gets the control, it sets its Visible property to show the control.

      Note: Be sure to change the ctrlID_tab string to the control ID for the tab that is displayed in the UI Designer.




      Get the control and make it visible
      Copy Code
              static void screen_NewScreenReady(object sender, EventArgs e)
              {
                  IIbmScreen screen = (IIbmScreen)sender;
      
                  //The control ID for the tab is displayed in the Identifier field in the UI Designer.
                  //Replace this string with the actual string id of the button you added in steps 7-8 of
                  string ctrlID_tab = "tab14";
                  IUiControl controlTab;
      
                  //Find the screen to display the tab for
                  if (screen.GetText(1, 1, 10).Contains("LOGON"))
                  {
                      Application app = MyReflection.ActiveApplication;
                      IFrame frame = (IFrame)app.GetObject("Frame");
      
                      //Get the View and the UiMode object that contains the controls for this view.
                      IView view = frame.SelectedView;
                      IUiMode ui = (IUiMode)view.UiMode;
      
                      //Get the control with the control ID and show the control
                      controlTab = (IUiControl)ui.GetControlById(ctrlID_tab);
                      controlTab.Visible = true;
                  }
      
              }
      

    To test this project

    1. Press F5 to run the sample.
    2. At the first screen, enter any credentials to log on.
      The next screen has the "LOGON" text that identifies it as the screen to display the tab on.
    3. Verify that the tab is visible on the screen that has the "LOGON" text.
    4. Click the button on the tab to open a Web session with the URL that you added earlier.

    Map an Action to the Control

    You can dynamically add or change the action mapped to a button. This sample changes the action of the button you configured above from opening a URL to sending a string of data to the host. 

    To map an action to a control

    Replace the code in the screen_NewScreenReady event handler that you set up earlier (in Display the Control) with the following code. This includes additional code that changes the action for the button created earlier in the UI designer. The code identifies the button , creates an action, and  adds it to an Input action sequence. Then it gets the button with its control ID and maps the action sequence to the button.

    Note: Be sure to change the ctrlID_tab and ctrlID_button strings to the IDs for these controls that are displayed in the UI Designer.

    Map an action to a button
    Copy Code
    static void screen_NewScreenReady(object sender, EventArgs e)
    {
        IIbmScreen screen = (IIbmScreen)sender;
        //Replace tab2 with the tab ID of the tab you created
        //The control ID for the tab is displayed in the Identifier field in the UI Designer.
        string ctrlID_tab = "tab14";
    
        //****************************************************************************
        //*******Add the ID of the button control that is displayed in the UI Designer*******
        //Replace button4 with the ID of the button you created
        string ctrlID_button = "button16";
        //****************************************************************************
    
        //Find the screen to display the tab for
        if (screen.GetText(1, 1, 10).Contains("LOGON"))
        {
            Application app = MyReflection.ActiveApplication;
            IFrame frame = (IFrame)app.GetObject("Frame");
            //Get the View and the UiMode object that contains the controls for this view.
            IView view = frame.SelectedView;
            IUiMode ui = (IUiMode)view.UiMode;
            //Get the control with the control ID and show the control
            IUiControl controlTab = (IUiControl)ui.GetControlById(ctrlID_tab);
            controlTab.Visible = true;
    
            //***************************************************************
            //*******Add this code to change the action for the control*******
            //Create an object array that contains data and an action to send it to the host
            //Then create an action sequence and add the action to it
            object[] param = { "data" };
            InputMapAction action = new InputMapAction(InputMapActionID.SendHostTextAction, param);
            InputMapActionSequence actionSequence = new InputMapActionSequence();
            actionSequence.Add(action);
            //Get the button control with its control ID and bind the action sequence to the button
            IUiControl controlButton = (IUiControl)ui.GetControlById(ctrlID_button);
            controlButton.Text = "Send Data Text";
            screen.Parent.UiControlActionMapper.Add(controlButton, actionSequence);
            //****************************************************************************
        }
    }
    

    To test this project

    1. Press F5 to run the project and enter any credentials to log on.
    2. Open the Custom tab on the Ribbon and click the button on the tab.
    3. Verify that the button sends the text in the param array ("data") to the host.