Init() public method

Initilize the gui control.
public Init ( XCore.Mediator mediator, XmlNode configurationNode, ICmObject sourceObject ) : void
mediator XCore.Mediator
configurationNode System.Xml.XmlNode NB: In this case it is the main 'window' element node, /// se we have to drill down to find the control definition node(s).
sourceObject ICmObject
return void
Beispiel #1
0
 private void ShowConcDlg(ICmObject concordOnObject)
 {
     using (IFwGuiControl ctrl = new ConcordanceDlg())
     {
         ctrl.Init(m_mediator, MainWindowNode, concordOnObject);
         ctrl.Launch();
     }
 }
		private void ShowConcDlg(ICmObject concordOnObject)
		{
			using (IFwGuiControl ctrl = new ConcordanceDlg())
			{
				ctrl.Init(m_mediator, MainWindowNode, concordOnObject);
				ctrl.Launch();
			}
		}