The event arguments provided nodes are picked in the dialog.
Inheritance: System.EventArgs
Esempio n. 1
0
 private void BrowseCTRL_ItemsSelected(object sender, NodesSelectedEventArgs e)
 {
     try
     {
         foreach (ReferenceDescription reference in e.References)
         {
             if (reference.ReferenceTypeId == ReferenceTypeIds.HasProperty || reference.IsForward)
             {
                 SelectClauseCTRL.AddSelectClause(reference);
             }
         }
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
Esempio n. 2
0
 private void BrowseCTRL_NodesSelected(object sender, NodesSelectedEventArgs e)
 {
     try
     {
         foreach (ReferenceDescription reference in e.References)
         {
             NodeListCTRL.AddNodeId(reference);
         }    
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
Esempio n. 3
0
        private void BrowseCTRL_ItemsSelected(object sender, NodesSelectedEventArgs e)
        {
            try
            {
                foreach (ReferenceDescription reference in e.References)
                {
                    if (reference.ReferenceTypeId == ReferenceTypeIds.HasProperty || reference.IsForward)
                    {
                        ReadValuesCTRL.AddValueId(reference);
                    }
                }
            }
            catch (Exception exception)
            {
				GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }