Dev2.Studio.ClassRoutedEventHandlers.IntellisenseTextBoxTabInsertedEvent C# (CSharp) Method

IntellisenseTextBoxTabInsertedEvent() static private method

static private IntellisenseTextBoxTabInsertedEvent ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
return void
        internal static void IntellisenseTextBoxTabInsertedEvent(object sender, RoutedEventArgs e)
        {
            Application.Current.Dispatcher.BeginInvoke(new Action(() =>
            {
                IPopupController popup = CustomContainer.Get<IPopupController>();
                popup.Show("You have pasted text which contins tabs into a textbox on the design surface. Tabs are not allowed in textboxes on the design surface and will be replaced with spaces. "
                    + Environment.NewLine + Environment.NewLine +
                    "Please note that tabs are fully supported at runtime, in variables and when reading from files.",
                    "Tabs Pasted", MessageBoxButton.OK, MessageBoxImage.Information, GlobalConstants.Dev2MessageBoxDesignSurfaceTabPasteDialog);
            }), null);
        }