Esempio n. 1
0
        /**************************************************************************************************/
        private void LoadOrGetFhx()
        {
            //  get active patient object from session manager
            fhx = SessionManager.Instance.GetActivePatient().FHx;

            if (fhx != null)
            {
                fhx.AddHandlersWithLoad(listChanged, loadFinished, itemChanged);
            }
        }
Esempio n. 2
0
        /**************************************************************************************************/

        private void LoadOrGetFhx()
        {
            //  get active patient object from session manager
            fhx = SessionManager.Instance.GetActivePatient().FHx;

            if (fhx != null)
            {
                fhx.AddHandlersWithLoad(listChanged, loadFinished, itemChanged);

                if (fhx.IsLoaded)
                {
                    FillControls();
                }
                else
                {
                    loadingCircle1.Active  = true;
                    loadingCircle1.Visible = true;
                }
            }
        }
Esempio n. 3
0
 /**************************************************************************************************/
 private void LoadOrGetFhx()
 {
     //  get active patinet object from session manager
     fhx = SessionManager.Instance.GetActivePatient().FHx;
     pedigreeLegend1.ClearObservations();
     if (fhx != null)
     {
         fhx.AddHandlersWithLoad(FhxChanged, loadFinished, FhxItemChanged);
     }
 }
Esempio n. 4
0
        /**************************************************************************************************/
        private void LoadOrGetFhx()
        {
            //  get active patient object from session manager
            fhx = SessionManager.Instance.GetActivePatient().FHx;

            if (fhx != null)
            {
                fhx.AddHandlersWithLoad(listChanged, loadFinished, itemChanged);

                if (fhx.IsLoaded)
                {
                    FillControls();
                }
                else
                {
                    loadingCircle1.Active = true;
                    loadingCircle1.Visible = true;
                }
            }
        }
Esempio n. 5
0
        /**************************************************************************************************/
        private void LoadOrGetFhx()
        {
            //  get active patient object from session manager
            fhx = SessionManager.Instance.GetActivePatient().FHx;

            if (fhx != null)
            {
                fhx.AddHandlersWithLoad(listChanged, loadFinished, itemChanged);
            }
        }