////private void tbAsilePrice_Value_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        ////{
        ////    if (PubHelper.CheckIsManager1Purview("10"))
        ////    {
        ////        return;
        ////    }
        ////    FrmKeyboard frmKeyBoard = new FrmKeyboard();
        ////    frmKeyBoard.ShowDialog();
        ////}

        ////private void tbAsilePrice_Value_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
        ////{
        ////    if (PubHelper.CheckIsManager1Purview("10"))
        ////    {
        ////        return;
        ////    }
        ////    FrmKeyboard frmKeyBoard = new FrmKeyboard();
        ////    frmKeyBoard.ShowDialog();
        ////}

        private void tbAsilePrice_Value_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            if (!PubHelper.CheckIsManager1Purview("10"))
            {
                return;
            }
            PubHelper.ShowKeyBoard(tbAsilePrice_Value.Text);
            tbAsilePrice_Value.Text = PubHelper.p_Keyboard_Input;
        }
Пример #2
0
 private void tbLgsId_Value_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
 {
     PubHelper.ShowKeyBoard(tbLgsId_Value.Text);
     tbLgsId_Value.Text = PubHelper.p_Keyboard_Input;
 }