I have a richtextbox and when I try to drag & drop inside it it throws exception:

enter image description here

it happens when i'm in debug mode and the common language runtime exception flag is on.

This is my XAML -

<Grid>
    <RichTextBox x:Name="rtb" ScrollViewer.VerticalScrollBarVisibility="Auto" IsReadOnly="True" />
</Grid>

this is code behind -

public MainWindow()
    {
        InitializeComponent();
        rtb.AppendText("aaaaaaa aaaaaaaaaaa aaaaaaaa aaaaaaaabbb bbbbb bbbbb bbbb");
    }
link|improve this question

59% accept rate
2  
Do you have to have the CLR Exception flag set? I think MS uses the exception system internally to handle some cases that you usually don't have to worry about, and that's where the exception is occurring. – Rachel Dec 12 '11 at 15:55
The exception you showed us has absolutely no link to a drag and drop, it's a click once exception. Also, the code behind you showed has no trace of a drag and drop towards any RichTextBox Control, however, as Rachel said, you should be okay without that flag set, this usually is to catch lower level unhandled exceptions. – Guillaume Cantin May 17 at 2:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.