コード例 #1
0
        private static void CytologyPanelOrderChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ScreeningImpressionSelection ScreeningImpressionSelection = (ScreeningImpressionSelection)d;

            ScreeningImpressionSelection.CytologyPanelOrder = (YellowstonePathology.Business.Test.ThinPrepPap.PanelOrderCytology)e.NewValue;
        }
コード例 #2
0
        private static void AccessionOrderChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ScreeningImpressionSelection screeningImpressionSelection = (ScreeningImpressionSelection)d;

            screeningImpressionSelection.AccessionOrder = (YellowstonePathology.Business.Test.AccessionOrder)e.NewValue;
        }
コード例 #3
0
        private static void VisibilityChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ScreeningImpressionSelection screeningImpressionSelection = (ScreeningImpressionSelection)d;

            screeningImpressionSelection.StackPanelScreeningImpression.Visibility = (Visibility)e.NewValue;
        }
コード例 #4
0
        private static void TextChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ScreeningImpressionSelection screeningImpressionSelection = (ScreeningImpressionSelection)d;

            screeningImpressionSelection.TextBoxScreeningImpression.Text = e.NewValue as string;
        }