Esempio n. 1
0
        private void bitmapButtonColonRisk_Click(object sender, EventArgs e)
        {
            HighRiskFollowupView hrfv = new HighRiskFollowupView(p_HighRiskColonQueue);

            hrfv.PushViewStack = PushViewStack;
            PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
        }
Esempio n. 2
0
        private void myPatientsBitmapButton_Click(object sender, EventArgs e)
        {
            //HighRiskFollowupView hrfmf = new HighRiskFollowupView(p_MyPatientsQueue);
            //hrfmf.WindowState = FormWindowState.Maximized;
            //hrfmf.ShowDialog();
            //RefreshDashboard();

            HighRiskFollowupView hrfv = new HighRiskFollowupView(p_MyPatientsQueue);

            hrfv.PushViewStack = PushViewStack;
            PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
        }
Esempio n. 3
0
        private void bitmapButton5_Click(object sender, EventArgs e)
        {
            //HighRiskFollowupView hrfv = new HighRiskFollowupView(p_BrcaPositiveQueue); //brca pos families
            ////hrfv.clinicId = ((Clinic)comboBox1.SelectedItem).clinicID;
            //hrfv.WindowState = FormWindowState.Maximized;
            //hrfv.ShowDialog();
            //RefreshDashboard();

            HighRiskFollowupView hrfv = new HighRiskFollowupView(p_BrcaPositiveQueue); //brca pos families

            hrfv.PushViewStack = PushViewStack;
            PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
        }
Esempio n. 4
0
 private void LynchQueue_Click(object sender, EventArgs e)
 {
     HighRiskFollowupView hrfv = new HighRiskFollowupView(p_HighRiskColonQueue);
     hrfv.PushViewStack = PushViewStack;
     PushViewStack(hrfv, DockState.Document);
 }
Esempio n. 5
0
        public void Followup(string type)
        {
            HighRiskFollowupView hrfv = null;

            FollowupQueue queue = new FollowupQueue();
            queue.QueueName = "My Patients";
            queue.QueueText = "Follow Patients";
            queue.type = type;
            queue.clinicId = DashboardClinicId;
            queue.startTime = DashboardStart;
            queue.endTime = DashboardEnd;
            queue.mode = DashboardMode;

            hrfv = new HighRiskFollowupView(queue);

            if (hrfv != null)
            {
                hrfv.PushViewStack = PushViewStack;
                PushViewStack(hrfv, DockState.Document);
            }
        }
Esempio n. 6
0
        /************************/
        private IDockContent GetContentFromPersistString(string persistString)
        {
            if (persistString == typeof(RiskClinicDashboard).ToString())
            {
                rcd = new RiskClinicDashboard();
                rcd.PushViewStack = PushViewOnMainWindow;
                viewStack.Push(rcd);
                return rcd;
            }
            if (persistString == typeof(BreastImagingDashboard).ToString())
            {
                bid = new BreastImagingDashboard();
                bid.PushViewStack = PushViewOnMainWindow;
                viewStack.Push(bid);
                return bid;
            }
            if (persistString == typeof(MyScheduleView).ToString())
            {
                mpv = new MyScheduleView();
                mpv.PushViewStack = PushViewOnMainWindow;
                viewStack.Push(mpv);
                return mpv;
            }

            if (persistString == "RiskApps3.View.RiskClinic.MyPatientsView")
            {
                RiskApps3.Model.Clinic.Dashboard.myPatientsQueue p_MyPatientsQueue = new Model.Clinic.Dashboard.myPatientsQueue();
                HighRiskFollowupView hrfv = new HighRiskFollowupView(p_MyPatientsQueue);
                hrfv.PushViewStack = PushViewOnMainWindow;
                viewStack.Push(hrfv);
                return hrfv;
            }

            return null;
        }
Esempio n. 7
0
        private void myPatientsBitmapButton_Click(object sender, EventArgs e)
        {
            //HighRiskFollowupView hrfmf = new HighRiskFollowupView(p_MyPatientsQueue);
            //hrfmf.WindowState = FormWindowState.Maximized;
            //hrfmf.ShowDialog();
            //RefreshDashboard();

            HighRiskFollowupView hrfv = new HighRiskFollowupView(p_MyPatientsQueue);
            hrfv.PushViewStack = PushViewStack;
            PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
        }
Esempio n. 8
0
 private void bitmapButtonColonRisk_Click(object sender, EventArgs e)
 {
     HighRiskFollowupView hrfv = new HighRiskFollowupView(p_HighRiskColonQueue);
     hrfv.PushViewStack = PushViewStack;
     PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
 }
Esempio n. 9
0
        private void bitmapButton5_Click(object sender, EventArgs e)
        {
            //HighRiskFollowupView hrfv = new HighRiskFollowupView(p_BrcaPositiveQueue); //brca pos families
            ////hrfv.clinicId = ((Clinic)comboBox1.SelectedItem).clinicID;
            //hrfv.WindowState = FormWindowState.Maximized;
            //hrfv.ShowDialog();
            //RefreshDashboard();

            HighRiskFollowupView hrfv = new HighRiskFollowupView(p_BrcaPositiveQueue); //brca pos families
            hrfv.PushViewStack = PushViewStack;
            PushViewStack(hrfv, WeifenLuo.WinFormsUI.Docking.DockState.Document);
        }