<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.silverlight.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Report a Silverlight Bug</title><link>http://forums.silverlight.net/forums/28.aspx</link><description>Found a bug in Silverlight? Use this forum to describe the bug and the code or steps to reproduce it.</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/112500.aspx</link><pubDate>Sat, 18 Oct 2008 15:16:13 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:112500</guid><dc:creator>StefanWick</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/112500.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=112500</wfw:commentRss><description>&lt;p&gt;Can you explain the scenario that this breaks? Does deriving your own&amp;nbsp;class from TextBox&amp;nbsp;not un-break it for you?&lt;/p&gt;
&lt;p&gt;Thanks, Stefan Wick&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/112441.aspx</link><pubDate>Sat, 18 Oct 2008 12:09:17 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:112441</guid><dc:creator>mr.saif</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/112441.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=112441</wfw:commentRss><description>&lt;p&gt;But this breaks things for my project.....:(&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101244.aspx</link><pubDate>Thu, 02 Oct 2008 05:54:09 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101244</guid><dc:creator>StefanWick</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101244.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101244</wfw:commentRss><description>&lt;p&gt;It is consistent (I assume you are referring to the fact that the Border doesn&amp;#39;t handle the events). Here is why:&lt;/p&gt;
&lt;p&gt;The Border is a different element in the TextBox&amp;#39;s tree. It doesn&amp;#39;t take any action when you hit it with a mouse. It does not handle the input, thus it doesn&amp;#39;t mark the event as handled, so that others can handle it further up the chain. The input area of the TextBox does take an action when you hit it with a mouse. It does handle the input, thus it marks the event as handled.&lt;/p&gt;
&lt;p&gt;Aside from being consistent, this is also compatible with WPF, which has been using the same design and has had the same consistent behavior&amp;nbsp;for years.&lt;/p&gt;
&lt;p&gt;Thanks, Stefan Wick&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101238.aspx</link><pubDate>Thu, 02 Oct 2008 05:37:55 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101238</guid><dc:creator>stefan.josten</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101238.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101238</wfw:commentRss><description>&lt;p&gt;I disagree that this is consistent. In my opinion it&amp;#39;s not consistent when the event is sometimes handled by the control and sometimes not. &lt;/p&gt;
&lt;p&gt;I wanted to use this event to clear the Text in a TextBox, when the user clicks inside the Box.&amp;nbsp;Your solution or&amp;nbsp;using the GotFocus event works&amp;nbsp;fine for me.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101225.aspx</link><pubDate>Thu, 02 Oct 2008 05:17:50 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101225</guid><dc:creator>StefanWick</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101225.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101225</wfw:commentRss><description>&lt;p&gt;It actually is consistent. Further down in the reference topic there is an &amp;quot;Important Note&amp;quot; that talks about this.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.mouseleftbuttondown(VS.95).aspx"&gt;http://msdn.microsoft.com/en-us/library/system.windows.uielement.mouseleftbuttondown(VS.95).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;Certain control classes (for example Button) provide control-specific handling for mouse events such as MouseLeftButtonDown. The control-specific handling typically involves handling the event at a class level rather than at the instance level, and marking the MouseLeftButtonDown event data&amp;#39;s Handled value as true such that the event cannot be handled by instances of the control class, nor by other objects anywhere further along the event route. In the case of Button, the class design does this so that the Click event can be raised instead.&amp;quot;&lt;/p&gt;
&lt;p&gt;This is exactly what happens here in the TextBox case. The TextBox control marks the events as handled. As I pointed out before, derived classes do receive the events - and they can set the Handled property back to false, then the&amp;nbsp;mouse up/down&amp;nbsp;events will fire on TextBox control. Here is how you do this:&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;pre class="coloredcode"&gt;&lt;span class="kwd"&gt;public class&lt;/span&gt; TextBox2 : TextBox
{
    &lt;span class="kwd"&gt;protected override void&lt;/span&gt; OnMouseLeftButtonDown(MouseButtonEventArgs e)
    {
        &lt;span class="kwd"&gt;base&lt;/span&gt;.OnMouseLeftButtonDown(e);
        e.Handled = &lt;span class="kwd"&gt;false&lt;/span&gt;;
    }

    &lt;span class="kwd"&gt;protected override void&lt;/span&gt; OnMouseLeftButtonUp(MouseButtonEventArgs e)
    {
        &lt;span class="kwd"&gt;base&lt;/span&gt;.OnMouseLeftButtonUp(e);
        e.Handled = &lt;span class="kwd"&gt;false&lt;/span&gt;;
    }
}
&lt;/pre&gt;
&lt;p&gt;Thanks, Stefan Wick&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101138.aspx</link><pubDate>Thu, 02 Oct 2008 00:59:23 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101138</guid><dc:creator>dbaechtel</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101138.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101138</wfw:commentRss><description>&lt;p&gt;&lt;BLOCKQUOTE&gt;&lt;div&gt;&lt;img src="/Themes/silverlight/images/icon-quote.gif"&gt; &lt;strong&gt;StefanWick:&lt;/strong&gt;&lt;/div&gt;&lt;div&gt; 
&lt;p&gt;This is by design and consistent with the behavior in WPF. The TextBox marks the mouse down/up events as handled and thus won&amp;#39;t bubble them up any further.&lt;/p&gt;
&lt;p&gt;Thanks, Stefan Wick&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;/BLOCKQUOTE&gt;&lt;/p&gt;Your explanation is not consistent with&amp;nbsp;the online Silverlight Reference documentation on &lt;strong&gt;TextBox&lt;/strong&gt; &lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown event&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;:&lt;span style="TEXT-TRANSFORM:none;TEXT-INDENT:0px;BORDER-COLLAPSE:separate;WHITE-SPACE:normal;LETTER-SPACING:normal;WORD-SPACING:0px;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0;" class="Apple-style-span"&gt;&lt;/span&gt;&lt;span style="TEXT-TRANSFORM:none;TEXT-INDENT:0px;BORDER-COLLAPSE:separate;WHITE-SPACE:normal;LETTER-SPACING:normal;WORD-SPACING:0px;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0;" class="Apple-style-span"&gt; 
&lt;p style="PADDING-BOTTOM:0px;MARGIN:0px 0px 10px;PADDING-LEFT:0px;PADDING-RIGHT:0px;PADDING-TOP:0px;"&gt;The&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event is raised when the left mouse button is pressed while the mouse pointer is over the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl37" href="http://msdn.microsoft.com/en-us/library/system.windows.uielement(VS.95).aspx"&gt;UIElement&lt;/a&gt;&lt;/span&gt;. When the mouse button is released, the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl38" href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.mouseleftbuttonup(VS.95).aspx"&gt;MouseLeftButtonUp&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event is raised. However, if the mouse pointer is moved over another object when the button is released, the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl39" href="http://msdn.microsoft.com/en-us/library/system.windows.uielement(VS.95).aspx"&gt;UIElement&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;that received the&lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event will not receive the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl40" href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.mouseleftbuttonup(VS.95).aspx"&gt;MouseLeftButtonUp&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event. There is no discrete double-click event. A double-click consists of two sequences of&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;and&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl41" href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.mouseleftbuttonup(VS.95).aspx"&gt;MouseLeftButtonUp&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;events.&lt;/p&gt;
&lt;p style="PADDING-BOTTOM:0px;MARGIN:0px 0px 10px;PADDING-LEFT:0px;PADDING-RIGHT:0px;PADDING-TOP:0px;"&gt;The&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event is a &lt;strong&gt;bubbling&lt;/strong&gt; event. This means that if multiple&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;span style="FONT-WEIGHT:700;" class="selflink"&gt;MouseLeftButtonDown &lt;/span&gt;&lt;/span&gt;event handlers are registered for a sequence of objects connected by parent-child relationships in the object tree, the event is received by each object in that relationship. The event is raised by the object that directly receives the input condition that initiates the event, &lt;strong&gt;and then bubbles to each successive parent object&lt;/strong&gt;. The bubbling metaphor indicates that the event starts at the bottom and works its way up the object tree. For a bubbling event, the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="FONT-STYLE:italic;MARGIN:0px;FONT-FAMILY:Verdana, Arial, Helvetica, sans-serif;FONT-SIZE:100%;" class="parameter"&gt;sender&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;available to the event handler identifies the object where the event is handled, not necessarily the object that actually received the input condition that initiated the event. To get the object that initiated the event, use the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl42" href="http://msdn.microsoft.com/en-us/library/system.windows.routedeventargs.source(VS.95).aspx"&gt;Source&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;value of the event&amp;#39;s&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;a style="TEXT-DECORATION:none;" id="ctl00_rs1_mainContentContainer_ctl43" href="http://msdn.microsoft.com/en-us/library/system.windows.routedeventargs(VS.95).aspx"&gt;RoutedEventArgs&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;event data.&lt;/p&gt;&lt;/span&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101104.aspx</link><pubDate>Wed, 01 Oct 2008 23:16:01 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101104</guid><dc:creator>StefanWick</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101104.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101104</wfw:commentRss><description>&lt;p&gt;This is by design and consistent with the behavior in WPF. The TextBox marks the mouse down/up events as handled and thus won&amp;#39;t bubble them up any further.&lt;/p&gt;
&lt;p&gt;You can get the mouse events by deriving from TextBox like this:&lt;/p&gt;&lt;pre class="coloredcode"&gt;&lt;span class="kwd"&gt;public class&lt;/span&gt; TextBox2 : TextBox
{
    &lt;span class="kwd"&gt;protected override void&lt;/span&gt; OnMouseLeftButtonDown(MouseButtonEventArgs e)
    {
        &lt;span class="kwd"&gt;base&lt;/span&gt;.OnMouseLeftButtonDown(e);
    }

    &lt;span class="kwd"&gt;protected override void&lt;/span&gt; OnMouseLeftButtonUp(MouseButtonEventArgs e)
    {
        &lt;span class="kwd"&gt;base&lt;/span&gt;.OnMouseLeftButtonUp(e);
    }
}&lt;/pre&gt;
&lt;p&gt;Thanks, Stefan Wick&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/101029.aspx</link><pubDate>Wed, 01 Oct 2008 21:34:11 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:101029</guid><dc:creator>dbaechtel</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/101029.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=101029</wfw:commentRss><description>I agree. As long as the cursor is an Insert Cursor (I-beam), the MouseLeftButtonDown or MouseLeftButtonUp events do not fire. If you move to the border of the TextBox where the cursor changes back to the standard selection arrow, the MouseLeftButtonDown event fires and the Sender value sent to the event handler is TextBox.
&lt;br /&gt; &lt;br /&gt;
This doesn&amp;#39;t seem like it is working properly.</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/100775.aspx</link><pubDate>Wed, 01 Oct 2008 14:25:41 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:100775</guid><dc:creator>sebschmitt</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/100775.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=100775</wfw:commentRss><description>&lt;p&gt;Thanks a lot to Stefan, who already reproduced the second error.&lt;br /&gt;&lt;br /&gt;However, I was not able to reproduce the first error, since it did not occur in any new Silverlight project I created. The App where it occurs is a bit complex , so it might take some time to find the cause. In the meantime I am happy with my workaround.&lt;/p&gt;&lt;p&gt;The first error however might be severe, if it really affects all Silverlight user controls in RC0.&lt;/p&gt;&lt;p&gt;Is it really an error caused by the release of RC0? If so, will it be fixed?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire event</title><link>http://forums.silverlight.net/forums/thread/99888.aspx</link><pubDate>Tue, 30 Sep 2008 11:34:33 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:99888</guid><dc:creator>stefan.josten</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/99888.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=99888</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I can reprocuce the second error:&lt;/p&gt;&lt;p&gt;The MouseLeftButtonDown event doesn&amp;#39;t fire, if the TextBox contains Text. Clicking near the TextBox Border (mouse icon: Arrow) works fine. Clicking inside the TextBox (mouse icon has changed) fails.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;UserControl x:Class=&amp;quot;TBClickBugRepro.Page&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns=&amp;quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&amp;quot; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:x=&amp;quot;http://schemas.microsoft.com/winfx/2006/xaml&amp;quot; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Width=&amp;quot;400&amp;quot; Height=&amp;quot;300&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid x:Name=&amp;quot;LayoutRoot&amp;quot; Background=&amp;quot;White&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;TextBox x:Name=&amp;quot;Test&amp;quot; Text=&amp;quot;123&amp;quot; MouseLeftButtonDown=&amp;quot;Test_MouseLeftButtonDown&amp;quot; Height=&amp;quot;20&amp;quot; Width=&amp;quot;Auto&amp;quot;&amp;gt;&amp;lt;/TextBox&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;br /&gt;&amp;lt;/UserControl&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire MouseLeftButtonDown event</title><link>http://forums.silverlight.net/forums/thread/99725.aspx</link><pubDate>Tue, 30 Sep 2008 06:22:25 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:99725</guid><dc:creator>Allen Chen – MSFT</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/99725.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=99725</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I cannot reproduce this problem. Could you post a demo project that can reproduce this problem?&lt;/p&gt;</description></item><item><title>Re: RC0 Error: TextBox is locked and does not fire MouseLeftButtonDown event</title><link>http://forums.silverlight.net/forums/thread/98676.aspx</link><pubDate>Sun, 28 Sep 2008 13:21:46 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:98676</guid><dc:creator>sebschmitt</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/98676.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=98676</wfw:commentRss><description>&lt;p&gt;Update: It seems like the MouseLeftButtonDown event is not fired by the Button user controls either. Maybe all user controls are affected?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>RC0 Error: TextBox is locked and does not fire MouseLeftButtonDown event</title><link>http://forums.silverlight.net/forums/thread/98639.aspx</link><pubDate>Sun, 28 Sep 2008 09:49:02 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:98639</guid><dc:creator>sebschmitt</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/98639.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=28&amp;PostID=98639</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;During my migration to RC0 I discovered a strange new behaviour of the TextBox user control:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Whenever I set its visibility attribute to &amp;quot;collapsed&amp;quot; and &amp;quot;visible&amp;quot; again, the text content is locked, meaning the user cannot change it any longer. I found a workaround by removing the text box from the children collection of its parent element and adding it again.&lt;/li&gt;&lt;li&gt;The MouseLeftButtonDown (defined within XAML) doesn&amp;#39;t fire any longer without throwing any error / exception. I found a workaround by replacing this event with a GotFocus event.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&amp;nbsp;Has anybody an idea, why this strange new behaviour occurs and how it might be fixed in other ways than I did?&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>