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
 public FamilyHistoryViewSerializer(Patient p, Model.PatientRecord.FHx.FamilyHistory f)
 {
     InitializeComponent();
     this.fhx     = f;
     this.proband = p;
 }
Esempio n. 4
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);
     }
 }
 public FamilyHistoryViewSerializer(Patient p, Model.PatientRecord.FHx.FamilyHistory f)
 {
     InitializeComponent();
     this.fhx = f;
     this.proband = p;
 }
Esempio n. 6
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. 7
0
        /**************************************************************************************************/
        private void LoadOrGetFhx()
        {
            //  get active patient object from session manager
            fhx = SessionManager.Instance.GetActivePatient().FHx;

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