Esempio n. 1
0
        private ReflexilHost CreateHostControlIfNecessary()
        {
            if (_host != null)
            {
                return(_host);
            }

            Application.EnableVisualStyles();
            _host = new ReflexilHost(this, OnCloseReflexilHost);
            return(_host);
        }
Esempio n. 2
0
        private void OnClickExecuted()
        {
            if (!IsReflexilHostLoaded)
            {
                if (this.reflexilHost == null)
                {
                    this.reflexilHost = new ReflexilHost(OnCloseReflexilHostExecuted, ReflexilWindow);
                }
                regionManager.AddToRegion("PluginRegion", reflexilHost);

                SetReflexilHandler(this.selectedItem);
            }
        }
Esempio n. 3
0
 private void OnClickExecuted()
 {
     if (!this.IsReflexilHostLoaded)
     {
         if (this.reflexilHost == null)
         {
             this.reflexilHost = new ReflexilHost(new Action(this.OnCloseReflexilHostExecuted), this.ReflexilWindow);
         }
         this.regionManager.AddToRegion("PluginRegion", this.reflexilHost);
         this.SetReflexilHandler(this.selectedItem);
     }
 }
        private void OnClickExecuted()
        {
            if (!IsReflexilHostLoaded)
            {
                if (this.reflexilHost == null)
                {
                    this.reflexilHost = new ReflexilHost(OnCloseReflexilHostExecuted, ReflexilWindow);
                }
                regionManager.AddToRegion("PluginRegion", reflexilHost);

                SetReflexilHandler(this.selectedItem);
            }
        }