Exemple #1
0
        private static void VisibilityChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            OtherConditionsSelection otherConditionsSelection = (OtherConditionsSelection)d;

            otherConditionsSelection.StackPanelListAndButtons.Visibility = (Visibility)e.NewValue;
        }
Exemple #2
0
        private static void CytologyPanelOrderChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            OtherConditionsSelection otherConditionsSelection = (OtherConditionsSelection)d;

            otherConditionsSelection.m_CytologyPanelOrder = (YellowstonePathology.Business.Test.ThinPrepPap.PanelOrderCytology)e.NewValue;
        }
Exemple #3
0
        private static void TextChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            OtherConditionsSelection otherConditionsSelection = (OtherConditionsSelection)d;

            otherConditionsSelection.TextBoxOtherConditions.Text = e.NewValue as string;
        }